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