Skip to content

Instantly share code, notes, and snippets.

@kalaiselvan369
Last active June 7, 2023 07:55
Show Gist options
  • Select an option

  • Save kalaiselvan369/c1715cccf0bb1c34bffcf34e52d27a2b to your computer and use it in GitHub Desktop.

Select an option

Save kalaiselvan369/c1715cccf0bb1c34bffcf34e52d27a2b to your computer and use it in GitHub Desktop.
Kotlin Basics
fun main() {
println("Hello World")
}
fun main(args: Array<String>) {
println("arguments received: ${args.toList()}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment