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