Files
swift-mirror/test/Interpreter/hello_func.swift
Ted Kremenek fad874708e Adjust test cases.
Swift SVN r17964
2014-05-12 22:01:52 +00:00

9 lines
120 B
Swift

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