1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/projects/Stacker/samples/hello.st
Chris Lattner 4a737afef2 Initial checkin of stacker samples
llvm-svn: 10181
2003-11-23 17:55:19 +00:00

6 lines
106 B
Smalltalk

#
# Traditional "Hello World" program in Stacker
#
: say_hello "Hello, World!" >s CR ;
: MAIN say_hello ;