]> gitweb.factorcode.org Git - factor.git/blob - extra/hello-world/hello-world.factor
scryfall: make decks better, import from moxfield
[factor.git] / extra / hello-world / hello-world.factor
1 USE: io
2 IN: hello-world
3
4 : hello ( -- ) "Hello world" print ;
5
6 MAIN: hello