Last active
June 3, 2021 14:41
-
-
Save yogeshgosavi/fb2733ddb326c344b65bf383f3c1c80b to your computer and use it in GitHub Desktop.
trying dartpad
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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