Skip to content

Instantly share code, notes, and snippets.

@EtherTyper
Last active March 2, 2016 23:59
Show Gist options
  • Select an option

  • Save EtherTyper/e9d1df478a5cbad1091d to your computer and use it in GitHub Desktop.

Select an option

Save EtherTyper/e9d1df478a5cbad1091d to your computer and use it in GitHub Desktop.
My first real Kotlin app!
/**
* 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