Created
February 9, 2025 16:52
-
-
Save FatherAbrahamDeveloper/2c66d48d53a7f776af1ce44c2b24eb24 to your computer and use it in GitHub Desktop.
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() { | |
//Assigning my variables here | |
String Assignment = "This is My Dart Project"; | |
String fullName = "Abraham Igbinigie"; | |
int age = 25; | |
String favoriteHobby = "coding, tennis and US Politics"; | |
bool isFlutterDeveloper = true; | |
// Display the stored information | |
print("$Assignment"); | |
print("===================="); | |
print("Hello everyone. My name is $fullName"); | |
print("I am $age years old"); | |
print("My favorite hobbies are $favoriteHobby"); | |
print( | |
"True or false, am I a real flutter developer? Well this is $isFlutterDeveloper"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment