Files
Android11/external/one-true-awk/bugs-fixed/numeric-subsep.awk
2023-10-13 14:01:41 +00:00

6 lines
102 B
Awk

BEGIN {
SUBSEP = 123.456;
a["hello", "world"] = "foo";
print a["hello" SUBSEP "world"];
}