REPL
Start the REPL by running the interpreter without a source file:
./build/interpreterWhat it is good for
Section titled “What it is good for”The REPL is useful for:
- quick expression checks
- small runtime experiments
- trying built-in functions
- validating simple syntax without creating a file
Current limitation
Section titled “Current limitation”The frontend currently rejects @import(...) in interactive mode. Use a real
.kel file when the experiment depends on source modules or native packages.
When to leave the REPL
Section titled “When to leave the REPL”Switch to a file when you need:
- imports
- multi-file examples
- package usage
- anything you want to keep under version control