Skip to content

Instantly share code, notes, and snippets.

@junpluse
Last active April 3, 2019 13:34
Show Gist options
  • Save junpluse/8c8f628243e48a9d19f9eee2d62ab050 to your computer and use it in GitHub Desktop.
Save junpluse/8c8f628243e48a9d19f9eee2d62ab050 to your computer and use it in GitHub Desktop.
#!/usr/bin/swift
import Darwin
signal(SIGINT) { _ in
print("🆖")
}
let konami = "↑↑↓↓←→←→BA"
while let line = readLine(strippingNewline: true) {
guard line == konami else { continue }
print("🆗")
exit(0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment