Skip to content

Instantly share code, notes, and snippets.

@219010328
Created May 21, 2022 10:59
Show Gist options
  • Save 219010328/5dec9c67b6769347912af305b47b540b to your computer and use it in GitHub Desktop.
Save 219010328/5dec9c67b6769347912af305b47b540b to your computer and use it in GitHub Desktop.
Question1
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