mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
4 lines
173 B
Plaintext
4 lines
173 B
Plaintext
|
assert |"hello @" % ("world") == "hello world"|;
|
||
|
assert |"1 @ @" % (2, 3) == "1 2 3"|;
|
||
|
assert |"@ or @" % (true, false) == "true or false"|;
|
||
|
assert |"@" % (NULL) == "NULL"|;
|