qse/qse/cmd/awk/t24.awk
2008-12-21 20:30:00 +00:00

7 lines
82 B
Awk

BEGIN {
a["abc\0\0xxx"] = "abcdefg";
print a["abc"];
print a["abc\0\0xxx"];
}