Feat: UI / UX

This commit is contained in:
2026-02-16 01:22:40 +01:00
parent b23dd85d0f
commit af6732db1c
37 changed files with 1045 additions and 64 deletions

View File

@@ -89,9 +89,10 @@ Cagire uses prefix syntax:
```forth
10 !x ;; store 10 in x
@x ;; fetch x (returns 0 if undefined)
10 ,x ;; store 10 in x, keep on stack
```
No declaration needed. Variables spring into existence when you store to them.
No declaration needed. Variables spring into existence when you store to them. `,x` stores and keeps the value on the stack.
## Floating Point