Last active
December 20, 2019 11:37
-
-
Save danybony/b8531d7d83553e9e20e279702c0ecaec to your computer and use it in GitHub Desktop.
Kotlin script and kscript
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
println("Called with args:") | |
args.forEach { | |
println("- $it") | |
} |
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
println("Hello from kscript") | |
println("The arguments were:") | |
args.forEach { | |
println("- $it") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment