]> gitweb.factorcode.org Git - factor.git/blob - extra/qw/qw-docs.factor
Merge branch 'master' of git://github.com/seckar/factor
[factor.git] / extra / qw / qw-docs.factor
1 ! (c)2009 Joe Groff bsd license
2 USING: help.markup help.syntax multiline ;
3 IN: qw
4
5 HELP: qw{
6 { $syntax "qw{ lorem ipsum }" }
7 { $description "Marks the beginning of a literal array of strings. Component strings are delimited by whitespace." }
8 { $examples
9 { $unchecked-example <" USING: prettyprint qw ;
10 qw{ pop quiz my hive of big wild ex tranny jocks } . ">
11 <" { "pop" "quiz" "my" "hive" "of" "big" "wild" "ex" "tranny" "jocks" } "> }
12 } ;