6 lines
104 B
Awk
6 lines
104 B
Awk
# This will not work
|
|
BEGIN {
|
|
for (el in "apples","bananas","cherries") {
|
|
print "I like " el
|
|
}
|
|
}
|