Created
August 28, 2019 07:41
-
-
Save yusuke024/bafc31148d709f41b80ec17771981100 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env swift | |
CommandLine.arguments // Get command-line arguments in the form of Swift array | |
print(_:separator:terminator) // Print to stdout | |
while let line = readLine() { … } // Read from stdin line-by-line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment