Files
swift-mirror/test/Interpreter/repl.swift

10 lines
134 B
Swift

// RUN: %swift -I %S/.. < %s -repl | FileCheck %s
false
// CHECK: false
(1,2)
// CHECK: (1, 2)
println(10)
// CHECK: 10
// CHECK: ()