Hello World

A minimal starter project.

  1. Create an index.html
  2. Add a script that logs "Hello, world!"
import time

print("Hello, world!")
time.sleep(10)

print("Hello, world!")

Back to Guides