Created
May 21, 2022 10:59
-
-
Save 219010328/5dec9c67b6769347912af305b47b540b to your computer and use it in GitHub Desktop.
Question1
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() { | |
const title = 'The Parrot\'s First dance'; | |
final author = 'John Doe'; | |
var price = 215.50; | |
print(""" | |
Title: $title | |
Author: $author | |
Price: ${price.toStringAsFixed(2)} | |
"""); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment