Skip to content

Instantly share code, notes, and snippets.

@yzyzsun
Created October 19, 2017 01:51
Show Gist options
  • Save yzyzsun/b1e170d24eccedbfd9c3d4d436db8fee to your computer and use it in GitHub Desktop.
Save yzyzsun/b1e170d24eccedbfd9c3d4d436db8fee to your computer and use it in GitHub Desktop.
Smalltalk syntax on a postcard
exampleWithNumber: x
|y|
true & false not & (nil isNil) ifFalse: [self halt].
y := self size + super size.
#($a #a 'a' 1 1.0)
do: [:each | Transcript
show: (each class name);
show: (each printString);
show: ' '].
^ x < y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment