summaryrefslogtreecommitdiff
path: root/factor/examples/hello/hello.factor
blob: 15b31fb1c1d769b35e4299d5862e5cbab0425a22 (plain) (blame)
1
2
3
4
5
6
7
USE: io
USE: examples.greeter
IN: examples.hello

: hello-world ( -- ) "world" greeting print ;

MAIN: hello-world