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