A live coding environment built for the classroom. Write, run, and share code — right in the browser.

Get started free Try it now
Why kōdlet

Everything you need, nothing you don't

🐍
Python, Web & JavaScript
Run code instantly — no installation, no configuration, no waiting. Turtle graphics included.
🔗
Share with a link
Every kōdlet gets its own URL. Copy it, post it, and students can run it immediately.
📎
Embed anywhere
Drop a live, interactive coding environment into any webpage, lesson, or LMS with a single snippet.
🔀
Remix & explore
Students can fork any kōdlet into their own account and experiment freely without affecting the original.
See it in action

Code runs right here, in the browser

main.py — kōdlet
# Fibonacci sequence
def fib(n):
  a, b = 0, 1
  for _ in range(n):
    print(a, end=" ")
    a, b = b, a + b

fib(8)
Output

0 1 1 2 3 5
8 13

Ready to get started?

Free for educators and students. No credit card required.

Create your first kōdlet
Already have an account? Log in