RosettaCodeData/Task/Literals-String/AWK/literals-string-2.awk

3 lines
102 B
Awk
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
$ awk 'BEGIN{c="x"; s="hello";s1 = "abcd"; s2 = "ab\"cd"; s=s c; print s; print s1; print s2}'
hellox