riju/langs/forth.yaml

28 lines
268 B
YAML

id: "forth"
aliases:
- "gforth"
name: "Forth"
install:
apt:
- gforth
repl: |
gforth
input: |
123 234 * .
main: "main.fs"
template: |
." Hello, world!" CR
run: |
gforth main.fs
scope:
code: |
VARIABLE X
123 234 * X !
input: |
X @ .