2019-03-15 13:06:56 +01:00
|
|
|
# Basic Interactions
|
2019-03-14 21:40:09 +01:00
|
|
|
|
2019-03-15 15:23:47 +01:00
|
|
|
Start RETRO in interactive mode:
|
|
|
|
|
|
|
|
```
|
|
|
|
retro -i
|
|
|
|
```
|
|
|
|
|
|
|
|
You should see something similar to this:
|
|
|
|
|
2021-05-10 14:06:48 +02:00
|
|
|
RETRO 12 (2021.7)
|
2019-03-15 15:23:47 +01:00
|
|
|
8388608 MAX, TIB @ 1025, Heap @ 9374
|
|
|
|
|
|
|
|
At this point you are at the *listener*, which reads and
|
|
|
|
processes your input. You are now set to begin exploring
|
|
|
|
RETRO.
|
|
|
|
|
2021-05-10 14:06:48 +02:00
|
|
|
RETRO is normally silent; unlike other Forth systems, it
|
|
|
|
does not display an "ok" prompt.
|
|
|
|
|
2019-03-15 15:23:47 +01:00
|
|
|
To exit, run `bye`:
|
|
|
|
|
|
|
|
```
|
|
|
|
bye
|
|
|
|
```
|
2021-05-10 14:06:48 +02:00
|
|
|
|