Update README and comment

This commit is contained in:
Koichi Nakamura 2021-01-11 01:27:13 +09:00
parent 4af8f3786e
commit 354e5ac4b7
2 changed files with 5 additions and 4 deletions

View file

@ -30,8 +30,9 @@ After bootstrapping by `bootstrap.fs`, it looks like this.
```
$ ./planck < bootstrap.fs
PlanckForth (implementation: hand-written i386-linux)
Ready.
Welcome to PlanckForth 0.0.1 [i386-linux handwrite]
Copyright (c) 2021 Koichi Nakamura <koichi@idein.jp>
Type 'bye' to exit.
." Hello World!" cr
```
@ -85,4 +86,4 @@ $ ./planck < bootstrap.fs example/fib.fs
| } | shr | ( a b -- c ) | c = a >> b (logical) |
| ) | sar | ( a b -- c ) | c = a >> b (arithmetic) |
| v | argv | ( -- a-addr u ) | argv and argc |
| V | version | ( -- c-addr ) | Version String |
| V | version | ( -- c-addr ) | Runtime infomation stringe |

View file

@ -60,7 +60,7 @@ l!
\ '}' ( a b -- c ) c = a >> b (logical)
\ ')' ( a b -- c ) c = a >> b (arithmetic)
\ 'v' ( -- a-addr u ) argv and argc
\ 'V' ( -- c-addr ) Version text
\ 'V' ( -- c-addr ) Runtime information string
\ The 1st stage interpreter repeats execution of k, f and x.
\ There following line is an example program of planckforth