RosettaCodeData/Task/Literals-String/AWK/literals-string-1.awk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
161 B
Awk

c = "x"
str= "hello"
s1 = "abcd" # simple string
s2 = "ab\"cd" # string containing a double quote, escaped with backslash
print s1
print s2