This commit is contained in:
anon 2025-02-07 21:19:42 +01:00
parent d8a312bd00
commit ab760e29da
2 changed files with 9 additions and 4 deletions

View File

@ -102,12 +102,16 @@ end machine
All literal values (string or numeric) are copied as machine code.
## Logic
+ only evaulated in _logical blocks_
```
if <logical-block> then
[else if <logic> then]+
[otherwise]
end if
```
### logical blocks
+ if-then-else-end-if
Logic is only evaulated in _logical blocks_
#### operators
### operators
+ =
+ >
+ <

View File

@ -97,6 +97,7 @@ int make_executable(const char * const filename) {
}
void _append_instructions(const unsigned argc, ...) {
// XXX: extension logic
va_list ap;
va_start(ap, argc);