🐐 README fixes

This commit is contained in:
2026-04-21 15:56:16 +02:00
parent 6413d9fd1c
commit 0b8b7c086e

View File

@@ -205,7 +205,7 @@ Calling a function is done with the `INVOCA` keyword.
## Built-ins ## Built-ins
### DICE ### DICE
`DICE value ...` `DICE(value, ...)`
Prints one or more values to stdout, space-separated, with integers rendered as Roman numerals. Returns the printed string. Prints one or more values to stdout, space-separated, with integers rendered as Roman numerals. Returns the printed string.
@@ -232,7 +232,7 @@ Skips the rest of the current loop body and continues to the next iteration (`DV
Breaks out of the current loop (`DVM` or `PER`). Has no meaningful return value. Breaks out of the current loop (`DVM` or `PER`). Has no meaningful return value.
### LONGITVDO ### LONGITVDO
`LONGITVDO array` or `LONGITVDO string` `LONGITVDO(array)` or `LONGITVDO(string)`
Returns the length of `array` (element count) or `string` (character count) as an integer. Returns the length of `array` (element count) or `string` (character count) as an integer.