Files
swift-mirror/test/Interpreter/hello_func.swift
2016-08-10 23:52:02 -07:00

10 lines
148 B
Swift

// RUN: %target-run-simple-swift | %FileCheck %s
// REQUIRES: executable_test
// CHECK: Nice shoes
func hello() {
print("Nice shoes")
}
hello()