Bold bold text Italic italicized text Ordered List
- First item
- Second item
- Third item Unordered List
- First item
- Second item
- Third item Fenced Code Block
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
Once upon a time, there was a 9-year-old boy named Timmy who had a big dream. He wanted to become the best orthodontist in the whole world!
Timmy loved brushing his teeth and reading books about smiles.
To become an orthodontist, Timmy knew he had to do well in school.
Even though he was only 9, Timmy never gave up on his dream.
"Every smile counts, and I’ll help them all!"
Timmy may be young, but with his big heart and big dreams, he's already on his way to becoming an amazing orthodontist someday!
Timmy also loved coding! Here's a simple Python program he made to remind kids to brush their teeth twice a day:
import time
def brush_teeth_reminder():
reminders = ["morning", "night"]
for when in reminders:
print(f"Don't forget to brush your teeth in the {when}!")
time.sleep(1)
print("🦷 Timmy's Brushing Reminder 🦷")
brush_teeth_reminder()
print("Great job! Keep smiling! 😁")