main.lm.md ×
Loading WebAssembly runtime...
Try Lumen directly in your browser. Edit the code and click Run to see the results.
cell main() -> String
return "Hello, World!"
endTo run Lumen on your machine:
# Install
cargo install lumen-lang
# Create a file
cat > hello.lm.md << 'EOF'
cell main() -> String
return "Hello, World!"
end
EOF
# Run it
lumen run hello.lm.md