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