mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
7 lines
241 B
Swift
7 lines
241 B
Swift
private var privateInMain = 33
|
|
// watchMe will get more and more specific
|
|
// By running the program at various stages, one can see if the incrementality
|
|
// is correct.
|
|
func watchMe(_: Any) -> String {"Any"}
|
|
print ("watchMe is", watchMe(17))
|