19 lines
751 B
Markdown
19 lines
751 B
Markdown
|
# The Web REPL
|
||
|
|
||
|
As an alterative to the command-line REPL, you can try out Talc in the browser
|
||
|
at (https://talc.trimill.xyz/repl)[https://talc.trimill.xyz/repl]. Although
|
||
|
the full Talc language and standard library (aside from file I/O and process
|
||
|
control) are available, editing features are more limited than the command-line
|
||
|
interface - especially of note is the lack of syntax highlighting and tab
|
||
|
completion.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Just like the command-line REPL, enter an expression and press Enter to
|
||
|
evaluate it. Use the up and down arrows to access input history.
|
||
|
|
||
|
For multiline editing, use Shift+Enter to insert a newline. Hold the Control
|
||
|
key while pressing the up or down arrows to move the cursor between lines.
|
||
|
|
||
|
To clear the screen, press Ctrl+L.
|