diff options
Diffstat (limited to 'test/rwarray.awk')
-rw-r--r-- | test/rwarray.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/rwarray.awk b/test/rwarray.awk index eae22304..dfd74ce0 100644 --- a/test/rwarray.awk +++ b/test/rwarray.awk @@ -14,6 +14,11 @@ BEGIN { bool_sub = "bool-sub" dict[bool_sub] = mkbool(1) + dict["x"] = "x" + + dict["42"] = 42 + dict["42.42"] = 42.42 + n = asorti(dict, dictindices) for (i = 1; i <= n; i++) printf("dict[%s] = %s\n", dictindices[i], dict[dictindices[i]]) > "orig.out" |