Last active
June 7, 2023 07:55
-
-
Save kalaiselvan369/c1715cccf0bb1c34bffcf34e52d27a2b to your computer and use it in GitHub Desktop.
Kotlin Basics
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
| fun main() { | |
| println("Hello World") | |
| } |
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
| 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