Skip to content

Instantly share code, notes, and snippets.

@davidmigloz
Last active April 20, 2021 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidmigloz/8618598466f05174aed75abfe0c1fcb0 to your computer and use it in GitHub Desktop.
Save davidmigloz/8618598466f05174aed75abfe0c1fcb0 to your computer and use it in GitHub Desktop.
Dart vs Kotlin: hello world
void main() {
print("Hello world!");
}
fun main() {
print("Hello world!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment