blob: 0f401f6a501fd569524a7ffeda1fcade1d435b4c [file] [log] [blame]
// RUN: %target-build-swift -emit-sib %s -o %t.sib
// RUN: %target-build-swift %t.sib -o %t
// RUN: %target-run %t | FileCheck %s
// RUN: %target-build-swift -c %t.sib -o %t.o
// RUN: %target-build-swift %t.o -o %t
// RUN: %target-run %t | FileCheck %s
// RUN: %target-build-swift -emit-sibgen %s -o %t.sib
// RUN: %target-build-swift %t.sib -o %t
// RUN: %target-run %t | FileCheck %s
// RUN: %target-build-swift -c %t.sib -o %t.o
// RUN: %target-build-swift %t.o -o %t
// RUN: %target-run %t | FileCheck %s
// REQUIRES: executable_test
// CHECK: Hello World
// CHECK: Hello Bob, today is Tuesday.
func greet(name: String, _ day: String) -> String {
return "Hello \(name), today is \(day)."
}
print("Hello World")
print(greet("Bob", "Tuesday"))