diff options
author | Alexis Lockwood | 2021-06-27 20:58:55 -0400 |
---|---|---|
committer | Alexis Lockwood | 2021-06-27 20:58:55 -0400 |
commit | 5bf7f323e4d96056a00268ce03ed6f7aae71cac3 (patch) | |
tree | 9b228c6c7d75127cf0a184651c8c4cd6aab1a7b6 | |
parent | 2c4f7bf097283c707bd7a6ff8a12cd55913d0f1c (diff) |
oops syntax
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -238,7 +238,7 @@ FILE device /path/to/file | `CAT s$ t$` | Concatenate string `t$` onto the end of `s$` | | `CHR s$ n` | Append the byte value `n` onto the end of string `s$` | | `CLOSE [#n[,#n]...]` | Close file numbers (or all files). Defined by implementation | -| `DATA expr[ expr...]`` | Data for `READ` | +| `DATA expr[ expr...]` | Data for `READ` | | `DEC s$ n` | Append the decimal representation of `n` to `s$` | | `DEF FN name(args...) expr` | Create a function with the given name | | `END` | Stop execution and return to caller | @@ -257,8 +257,8 @@ FILE device /path/to/file | `OCT s$ n` | Append the octal representation of `n` to `s$` | | `ON expr GOTO n1, n2, ...` | Go to the `expr`th line given. | | `ON expr GOSUB [AS s] s1, s2, ...` | Call the `expr`th subroutine given. | -| `PACK n... AS s$ [USING fmt] | Pack values into binary format | -| `PRINT [TO #n] val... [,] | Print values, optionally to file `#n`, optionally without newline (`,`) | +| `PACK n... AS s$ [USING fmt]` | Pack values into binary format | +| `PRINT [TO #n] val... [,]` | Print values, optionally to file `#n`, optionally without newline (`,`) | | `RANDOMIZE [seed]` | Initialize the PRNG. | | `READ ident...` | Read from `DATA` statements | | `REM ...` | Comment | |