enhanced the compiler to handle a string as a series of bytes in a byte array literal.

added FileAccessor>>seek:whence:
This commit is contained in:
hyunghwan.chung
2019-10-29 14:21:14 +00:00
parent 044177fa61
commit b5b72c626c
6 changed files with 107 additions and 26 deletions

View File

@ -38,9 +38,10 @@
* #\pB8000000 SmallPointer(smptr) literal
* #() Array. Comma as element delimiter is optional
* #[] ByteArray. Comma as element delimiter is optional
* #[] ByteArray. Comma as element delimiter is optional #[ 16r10, 16r20, 16r30 ] #[ "\x10\x20", "\x30" ]
* #{} Dictionary - not supported yet
The followings are not literals. The followings forms expressions.
* ##() Array expression. Comma required to delimit elements