]> gitweb.factorcode.org Git - factor.git/blob - basis/help/tips/tips-docs.factor
docs: change $subsection to $subsections
[factor.git] / basis / help / tips / tips-docs.factor
1 IN: help.tips
2 USING: help.markup help.syntax debugger prettyprint see help help.vocabs
3 help.apropos tools.time stack-checker editors memory ;
4
5 TIP: "To look at the most recent error, run " { $link :error } ". To look at the most recent error's callstack, run " { $link :c } "." ;
6
7 TIP: "Learn to use " { $link "dataflow-combinators" } "." ;
8
9 TIP: "Learn to use " { $link "editor" } " to be able to jump to the source code for word definitions from the listener." ;
10
11 TIP: "Check out " { $url "http://concatenative.org/wiki/view/Factor/FAQ" } " to get answers to frequently-asked questions." ;
12
13 TIP: "Drop by the " { $snippet "#concatenative" } " IRC channel on " { $snippet "irc.freenode.net" } " some time." ;
14
15 TIP: "You can write documentation for your own code using the " { $link "help" } "." ;
16
17 TIP: "You can write graphical applications using the " { $link "ui" } "." ;
18
19 TIP: "Power tools: " { $links see edit help about apropos time infer. } ;
20
21 TIP: "Tips of the day implement the " { $link "definition-protocol" } " and new tips of the day can be defined using the " { $link POSTPONE: TIP: } " parsing word." ;
22
23 TIP: "Try some simple demo applications, then look at the source code in " { $snippet "extra/" } ": " { $snippet "\"demos\" run" } ;
24
25 TIP: "To save time on reloading big libraries such as the " { $vocab-link "furnace" } " web framework, save the image after loading them using the " { $link save } " word." ;
26
27 HELP: TIP:
28 { $syntax "TIP: content ;" }
29 { $values { "content" "a markup element" } }
30 { $description "Defines a new tip of the day." } ;
31   
32 ARTICLE: "all-tips-of-the-day" "All tips of the day"
33 { $tips-of-the-day } ;
34
35 ARTICLE: "tips-of-the-day" "Tips of the day"
36 "The " { $vocab-link "help.tips" } " vocabulary provides a facility for displaying tips of the day in the " { $link "ui-listener" } ". Tips are defined with a parsing word:"
37 { $subsections POSTPONE: TIP: }
38 "All tips defined so far:"
39 { $subsections "all-tips-of-the-day" } ;
40
41 ABOUT: "tips-of-the-day"