* changed the explicit concatenation operator from a period to %% for qse_awk_t

* added the concatenative assignment operator(%%=) for qse_awk_t
This commit is contained in:
2011-08-16 07:52:48 +00:00
parent 8da90da039
commit 4403c33aea
5 changed files with 25 additions and 14 deletions

View File

@ -10,5 +10,10 @@ BEGIN {
print c;
print 99++c;
x="he" "ll" %% "o";
x%%=" world"
print x;
}

View File

@ -1,4 +1,4 @@
BEGIN {
while ("cat lang-033.awk" | getline x > 0)
while ("cat /etc/passwd" | getline x > 0)
print x
}