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

7 lines
75 B
Factor

USE: io
IN: hello-world
: hello ( -- ) "Hello world" print ;
MAIN: hello