fuzzballcat / milliForth

A FORTH in 340 bytes — the smallest real programming language ever as of yet.
MIT License
475 stars 22 forks source link

duplicate line in hello_world #17

Open agsb opened 1 month ago

agsb commented 1 month ago

: lit rp@ @ dup 2 + rp@ ! @ ;

: ['] rp@ @ dup 2 + rp@ ! @ ;

Both in hello_world.Forth.

Maybe a error ?

agsb commented 1 month ago

or use

: ['] lit ;