]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/one-true-awk/bugs-fixed/numeric-subsep.awk
Implement pci_enable_msi() and pci_disable_msi() in the LinuxKPI.
[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 }