Task
📝 Task
Write a program that prints to the screen:
Hello, World!
📋 What to do:
1. In the editor on the right, write one line of code
2. Use the print() function — it displays text on the screen
3. Pass it the string "Hello, World!" in quotes
💡 Example of how print() works:
print("Hi")
# outputs: Hi
⚠️ Important:
• Letter case matters: "hello" ≠ "Hello"
• The comma, space and exclamation mark also matter
• Text must be in quotes "..." or '...'