aboutsummaryrefslogtreecommitdiff
path: root/contrib/one-true-awk/bugs-fixed/numeric-subsep.awk
blob: 1252e4a99607b09c98dda0aa3f089d3aa93aace6 (plain) (blame)
1
2
3
4
5
BEGIN {
    SUBSEP = 123.456;
    a["hello", "world"] = "foo";
    print a["hello" SUBSEP "world"];
}