factor/extra/hello-world/hello-world.factor

7 lines
75 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USE: io
IN: hello-world
: hello ( -- ) "Hello world" print ;
2007-09-20 18:09:08 -04:00
MAIN: hello