ucg/integration_tests/format_test.ucg

4 lines
173 B
Plaintext
Raw Normal View History

assert |"hello @" % ("world") == "hello world"|;
assert |"1 @ @" % (2, 3) == "1 2 3"|;
assert |"@ or @" % (true, false) == "true or false"|;
assert |"@" % (NULL) == "NULL"|;