]> gitweb.factorcode.org Git - factor.git/blob - basis/help/tips/tips-docs.factor
Add silly 'tip of the day' feature, and 'recently visited' list to UI browser home...
[factor.git] / basis / help / tips / tips-docs.factor
1 IN: help.tips
2 USING: help.markup help.syntax debugger ;
3
4 TIP: "To look at the most recent error, run " { $link :error } ". To look at the most recent error's callstack, run " { $link :c } "." ;
5
6 TIP: "Learn to use " { $link "dataflow-combinators" } "." ;
7
8 TIP: "Learn to use " { $link "editor" } " to be able to jump to the source code for word definitions from the listener." ;
9
10 TIP: "Check out " { $url "http://concatenative.org/wiki/view/Factor/FAQ" } " to get answers to frequently-asked questions." ;
11
12 TIP: "Drop by the " { $snippet "#concatenative" } " IRC channel on " { $snippet "irc.freenode.net" } " some time." ;
13
14 TIP: "You can write documentation for your own code using the " { $link "help" } "." ;
15
16 TIP: "You can write graphical applications using the " { $link "ui" } "." ;
17
18 ARTICLE: "all-tips-of-the-day" "All tips of the day"
19 { $tips-of-the-day } ;
20
21 ARTICLE: "tips-of-the-day" "Tips of the day"
22 "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:"
23 { $subsection POSTPONE: TIP: }
24 "All tips defined so far:"
25 { $subsection "all-tips-of-the-day" } ;
26
27 ABOUT: "tips-of-the-day"