]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/hello-world/hello-world.factor
Initial import
[factor.git] / extra / hello-world / hello-world.factor
diff --git a/extra/hello-world/hello-world.factor b/extra/hello-world/hello-world.factor
new file mode 100644 (file)
index 0000000..709ecb1
--- /dev/null
@@ -0,0 +1,6 @@
+USE: io
+IN: hello-world
+
+: hello "Hello world" print ;
+
+MAIN: hello