qse/ase/cmd/awk/t24.awk

7 lines
82 B
Awk
Raw Normal View History

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