Documentation Index
Fetch the complete documentation index at: https://edgepython.com/llms.txt
Use this file to discover all available pages before exploring further.
Install
Three ways to get Edge Python running.Browser playground
The fastest path. No install, runs entirely client-side via WebAssembly. Open the playground ->Native binary
Pre-built for Linux, macOS, and Windows on the releases page. Download, make executable, run.Output
Build from source
Requires a recent stable Rust toolchain.CLI usage
| Option | Effect |
|---|---|
-c <code> | Run inline code instead of reading a file |
--sandbox | Enforce hard limits on heap, ops, and call depth |
-d / -dd | Debug output — IC stats and heap footprint |
-q | Suppress info logs |
-h | Show help |
Your first program
Save this ashello.py:
Output
A taste of the language
Edge Python is a functional subset of Python 3.13. Functions are first-class values. Lambdas, currying, higher-order functions, and comprehensions are central.Output
What’s next
What it is
Scope, paradigm, and what intentionally isn’t supported.
Syntax
Operators, literals, and the language surface.
Built-ins
Every built-in function with examples and outputs.
Methods
String, list, and dict methods.