Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / extra / hello-world / hello-world.factor
blob03b3db9cfdf7300a5160dc1ae81a612c6b16ed54
1 USE: io
2 IN: hello-world
4 : hello ( -- ) "Hello world" print ;
6 MAIN: hello