xref: /netbsd-src/external/historical/nawk/dist/bugs-fixed/numeric-subsep.awk (revision 6f2cbaf6070522c7a121cd0dcb79cf06aa3606b1)
1BEGIN {
2    SUBSEP = 123.456;
3    a["hello", "world"] = "foo";
4    print a["hello" SUBSEP "world"];
5}
6