qw{
Quoted words


Vocabulary
qw

Syntax
qw{ lorem ipsum }


Word description
Marks the beginning of a literal array of strings. Component strings are delimited by whitespace.

Examples
USING: prettyprint qw ; qw{ a man a plan a canal panama } .
{ "a" "man" "a" "plan" "a" "canal" "panama" }


Definition