Created
February 19, 2022 05:09
-
-
Save faizan1947/8e801f55f4bfd69c043005f9efdc64bf to your computer and use it in GitHub Desktop.
Dart Basics
This file contains 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 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