ucg/integration_tests/format_test.ucg
2018-08-24 19:36:22 -05:00

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"|;