remove old screencode syntax from docs

This commit is contained in:
Irmen de Jong 2022-06-04 22:07:31 +02:00
parent a862a81480
commit a9fe6472d9
2 changed files with 3 additions and 1 deletions

View File

@ -299,7 +299,7 @@ Prog8 supports the following data types:
type identifier type storage size example var declaration and literal value type identifier type storage size example var declaration and literal value
=============== ======================= ================= ========================================= =============== ======================= ================= =========================================
``byte`` signed byte 1 byte = 8 bits ``byte myvar = -22`` ``byte`` signed byte 1 byte = 8 bits ``byte myvar = -22``
``ubyte`` unsigned byte 1 byte = 8 bits ``ubyte myvar = $8f``, ``ubyte c = 'a'``, ``ubyte c2 = @'a'`` ``ubyte`` unsigned byte 1 byte = 8 bits ``ubyte myvar = $8f``, ``ubyte c = 'a'``
-- boolean 1 byte = 8 bits ``byte myvar = true`` or ``byte myvar == false`` -- boolean 1 byte = 8 bits ``byte myvar = true`` or ``byte myvar == false``
The true and false are actually just aliases The true and false are actually just aliases
for the byte values 1 and 0. for the byte values 1 and 0.

View File

@ -3,6 +3,8 @@ TODO
For next release For next release
^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
- fix natt's bugs
- optimize pointervar indexing codegen: make them work as subroutine paramers
- optimize pointervar indexing codegen: writing (all sorts of things) - optimize pointervar indexing codegen: writing (all sorts of things)
- pipe operator: (targets other than 'Virtual'): allow non-unary function calls in the pipe that specify the other argument(s) in the calls. Already working for VM target. - pipe operator: (targets other than 'Virtual'): allow non-unary function calls in the pipe that specify the other argument(s) in the calls. Already working for VM target.
- add McCarthy evaluation to shortcircuit and/or expressions. First do ifs by splitting them up? Then do expressions that compute a value? - add McCarthy evaluation to shortcircuit and/or expressions. First do ifs by splitting them up? Then do expressions that compute a value?