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