Skip to content

Instantly share code, notes, and snippets.

@onumanfj
Created June 19, 2023 15:52
Show Gist options
  • Save onumanfj/0122dc9258f6b3eff1bf28641430a432 to your computer and use it in GitHub Desktop.
Save onumanfj/0122dc9258f6b3eff1bf28641430a432 to your computer and use it in GitHub Desktop.
dart - variables
void main () {
//primitive data types
late int num;
num = 10;
String myName = 'Francis';
bool isMale = true;
dynamic foo = 2;
foo = 'hello world!';
print(num);
print(myName);
print(isMale);
print(foo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment