1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/projects/Stacker/samples/goof.st
Brian Gaeke f8d1fc4a4e Apply patches from PR136
llvm-svn: 10192
2003-11-24 02:57:25 +00:00

26 lines
484 B
Smalltalk

#
# goof
#
: print_one
--
SWAP
>s
DROP
;
: print_it
WHILE
print_one
END
;
: MAIN
"MICKEY: I said she was f'in goofy!"
"MICKEY: I didn't say she was insane."
"JUDGE: Yet you provide no evidence of this and I do not concur."
"JUDGE: In your pleadings you claim that Mini Mouse is insane."
"MICKEY: Well, what do you mean, your honor?"
"JUDGE: Mr. Mouse, I find your grounds for divorce insufficient. "
6
print_it
;