Last active
March 2, 2016 23:59
-
-
Save EtherTyper/e9d1df478a5cbad1091d to your computer and use it in GitHub Desktop.
My first real Kotlin app!
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
| /** | |
| * Created by pigmasterisawesome on 3/2/16. | |
| */ | |
| class app { | |
| init { | |
| println("HELLO KOTLIN!") | |
| } | |
| } | |
| fun main(args: Array<String>){ | |
| if (args.isEmpty()) return | |
| for (i in 0..args[0].toInt()) | |
| app() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment