🐐 Various fixes

This commit is contained in:
2026-04-01 14:50:58 +02:00
parent bd27857472
commit f76a1fcfd4
2 changed files with 13 additions and 8 deletions

View File

@@ -67,13 +67,13 @@ Strings are written as text in quotes (`'` or `"`).
DESIGNA x VT "this is a string"
```
Strings are concatenated with `:`:
Strings are concatenated with `&`:
```
DESIGNA greeting VT "Hello, " : "world!"
DESIGNA greeting VT "Hello, " & "world!"
```
`NVLLVS` coerces to an empty string when used with `:`. Note: `+` is for arithmetic only — using it on strings raises an error.
`NVLLVS` coerces to an empty string when used with `&`. Note: `+` is for arithmetic only — using it on strings raises an error.
### Integers
Integers must be written in roman numerals using the following symbols:
@@ -165,12 +165,13 @@ SI x TVNC {
```
DESIGNA x VT II
SI x EST I TVNC
SI x EST I TVNC {
DICE(I)
ALVID SI x EST II TVNC
} ALVID SI x EST II TVNC {
DICE(II)
ALVID
} ALVID {
DICE(III)
}
> II
```