Skip to content

Instantly share code, notes, and snippets.

@faizan1947
Created February 19, 2022 05:09
Show Gist options
  • Save faizan1947/8e801f55f4bfd69c043005f9efdc64bf to your computer and use it in GitHub Desktop.
Save faizan1947/8e801f55f4bfd69c043005f9efdc64bf to your computer and use it in GitHub Desktop.
Dart Basics
void main(){
var name = 'Faizan';
var age = 20;
final height = 1.14;
print("Hello, I'm $name");
print("My name has ${name.length} letters");
print("I'm $age years old");
print("I'm $height meters tall");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment