Skip to content

Instantly share code, notes, and snippets.

@umair13adil
Created January 7, 2020 16:38
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 umair13adil/a233067a54ea62ee52a477b2016ede15 to your computer and use it in GitHub Desktop.
Save umair13adil/a233067a54ea62ee52a477b2016ede15 to your computer and use it in GitHub Desktop.
Learn Programming In Urdu Part 2 Tutorial (Dart)
void main(){
print("This is my first course in Urdu 1.");
print("This is my first course in Urdu 2.");
print("This is my first course in Urdu 3.");
print("This is my first course in Urdu 4.");
}
void main(){
var my_variable = 1; //Integer Variable
print(my_variable); //Print value
my_variable = 5; //Update value in variable
print(my_variable); //Print new value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment