xref: /freebsd/contrib/one-true-awk/bugs-fixed/numeric-subsep.awk (revision 5aa839c9e2c373275091b8bf529c1311d0b84d76)
1BEGIN {
2    SUBSEP = 123.456;
3    a["hello", "world"] = "foo";
4    print a["hello" SUBSEP "world"];
5}
6