]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/one-true-awk/bugs-fixed/numeric-subsep.awk
MFV r348535: 9677 panic from zio_write_gang_block() when creating dump device on...
[FreeBSD/FreeBSD.git] / contrib / one-true-awk / bugs-fixed / numeric-subsep.awk
1 BEGIN {
2     SUBSEP = 123.456;
3     a["hello", "world"] = "foo";
4     print a["hello" SUBSEP "world"];
5 }