self-modification no longer true

This commit is contained in:
Luxferre
2026-06-13 22:41:59 +03:00
parent 80ffb68bb5
commit e3680fb78e
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -62,8 +62,6 @@ Execute a statement `[stmt]` if the relation denoted by `relop` holds between `[
Examples: `IF A > B THEN LET C = A-B`, `IF X<1000 THEN GOTO 400`
Non-standard extension: if the `[stmt]` statement starts with a line number, LTTB doesn't execute it immediately but instead overwrites the original line with the number it starts with. This allows writing self-modifying programs in LTTB.
### `GOTO [expr]`
Direct jump. Evaluates `[expr]` to a line number and continues execution of the program from that line number. If the computed line number is outside the valid range (1 to 32767), the program halts.