Created
March 27, 2015 20:43
-
-
Save adamloving/c86d1730bed219316bae to your computer and use it in GitHub Desktop.
example swift command line script
This file contains hidden or 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 xcrun swift -i | |
println("Process.arguments gave args:") | |
for s in Process.arguments { | |
println(s) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment