Initial checkin of stacker samples


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10181 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/projects/Stacker/samples/hello.st b/projects/Stacker/samples/hello.st
new file mode 100644
index 0000000..e7e7b43
--- /dev/null
+++ b/projects/Stacker/samples/hello.st
@@ -0,0 +1,5 @@
+#
+# Traditional "Hello World" program in Stacker
+#
+: say_hello "Hello, World!" >s CR ;
+: MAIN say_hello ;