Quick actions

cmd+k|ctrl+k

Navigation

Languages

MyBio

Snippet info

Language

Swift

Visibility

public

Author

blackid99

Created

2020-11-04T16:26:22Z

Updated

2020-11-04T16:26:22Z

print("Please enter your name:")

if let name = readLine() {
    print("Hello, \(name)!")
} else {
    print("Why are you being so coy?")
}

print("TTFN!")
INFO