aboutsummaryrefslogtreecommitdiffstats
path: root/testcases-cons
diff options
context:
space:
mode:
Diffstat (limited to 'testcases-cons')
-rw-r--r--testcases-cons4
1 files changed, 4 insertions, 0 deletions
diff --git a/testcases-cons b/testcases-cons
index b4352ae..99c150b 100644
--- a/testcases-cons
+++ b/testcases-cons
@@ -216,10 +216,14 @@ $cppawk '
BEGIN {
print box_sym(undef), box_sym(1), box_sym("1a"), box_sym(0), box_sym(-1.34)
print "A" box_sym("nil") "B", box_sym("abc"), box_sym("()")
+ print box_str(undef), box_str(1), box_str("1a"), box_str(0), box_str(-1.34)
+ print "A" box_str("nil") "B", box_str("abc"), box_str("()")
}'
:
S S1 S1a S0 S-1.34
AB Sabc S()
+T T1 T1a T0 T-1.34
+ATnilB Tabc T()
--
16:
$cppawk '