Skip to content

Instantly share code, notes, and snippets.

@jeffersontpadua
Last active July 1, 2017 13:09
Show Gist options
  • Save jeffersontpadua/5942a4af83dea50fc24182699310b559 to your computer and use it in GitHub Desktop.
Save jeffersontpadua/5942a4af83dea50fc24182699310b559 to your computer and use it in GitHub Desktop.
Porque Kotlin deve ser a linguagem de programação escolhida por iniciantes em desenvolvimento Android
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
fun main(args: Array<String>) {
println("Hello World!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment