Initial checkin of stacker samples
[oota-llvm.git] / projects / Stacker / samples / hello.st
1 #
2 # Traditional "Hello World" program in Stacker
3 #
4 : say_hello "Hello, World!" >s CR ;
5 : MAIN say_hello ;