Skip to content

Instantly share code, notes, and snippets.

@yogeshgosavi
Last active June 3, 2021 14:41
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 yogeshgosavi/fb2733ddb326c344b65bf383f3c1c80b to your computer and use it in GitHub Desktop.
Save yogeshgosavi/fb2733ddb326c344b65bf383f3c1c80b to your computer and use it in GitHub Desktop.
trying dartpad
void main() {
var myname='YoG';
int myNumber = 123;
String myString = 'Hello';
double myDouble = 10.0;
bool myBrain = true;
int MyLaterToDeclareNumber;
var myDynamicVar;
myDynamicVar = 'hello';
myDynamicVar=123;
print('hello $myBrain');
print(myNumber);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment