16 lines
369 B
Plaintext
16 lines
369 B
Plaintext
# Cat strings
|
|
"First string and " "second string" cat print
|
|
|
|
# Join
|
|
[ "First string" "second string" "third string" ] " and " join print
|
|
|
|
# print
|
|
[ "First string" "second string" "third string" ] each print
|
|
|
|
# Formatted print
|
|
"\n" "Third string" "Second string" "First string" "%s %s %s %s" print
|
|
|
|
# Heredoc
|
|
" - NOT!!" as $x
|
|
"This is the only way to do it%($x)s" print
|