Coming Soon...

Write, run & share code instantly.

A minimalist, ultra-fast web editor. No heavy configs, no waiting. Just you and the code.

fibonacci.py
def fibonacci(n, memo={}):
    if n in memo: return memo[n]
    if n <= 1: return n
    memo[n] = fibonacci(n-1) + fibonacci(n-2)
    return memo[n]

print(fibonacci(10))  # → 55

Instant Execution

Your code runs in ephemeral isolated containers. Python, JS, C++, Rust, Go and 30+ more — ready in milliseconds.

🔗

Share with a Link

Code compresses directly into the URL. Copy and paste to share — no account needed.

🧙‍♂️

Esoteric Community

Create your own programming language, publish the compiler, and let the community use it.

💾

Cloud Storage

With an account, save up to 6 files per script. Share with permalinks and fork public scripts.

Available Languages

PythonJavaScriptTypeScriptCC++RustGoJavaRubyKotlinSwift + 30 more →