Skip to content

Instantly share code, notes, and snippets.

@davidmigloz
Last active April 20, 2021 07:46
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/afffa83428e90b4d144dbea49e2beafd to your computer and use it in GitHub Desktop.
Save davidmigloz/afffa83428e90b4d144dbea49e2beafd to your computer and use it in GitHub Desktop.
Dart vs Kotlin: boolean
void main() {
bool trueBoolean = true;
bool falseBoolean = false;
}
fun main() {
var trueBoolean: Boolean = true
var falseBoolean: Boolean = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment