mirror of
https://github.com/urlysses/1991.git
synced 2024-11-01 16:00:55 +11:00
13 lines
165 B
Forth
13 lines
165 B
Forth
\ App demo:
|
|
include ~+/1991.fs
|
|
|
|
s" ~+/examples/public" set-public-path
|
|
|
|
: handle-/ s" fff" ;
|
|
: handle-hi s" hi!" ;
|
|
|
|
/1991 / handle-/
|
|
/1991 /hi handle-hi
|
|
|
|
8080 1991:
|