Skip to content

Instantly share code, notes, and snippets.

@vivek081166
Last active August 27, 2018 09:45
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 vivek081166/cbc5e785d8f8dbc306e4576d370c0b9f to your computer and use it in GitHub Desktop.
Save vivek081166/cbc5e785d8f8dbc306e4576d370c0b9f to your computer and use it in GitHub Desktop.
void main() {
// Type Integer
int a = 8;
print(a);
// Type String
String b = "some text";
print(b);
// Type Boolean
bool c = true;
print(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment