Skip to content

Instantly share code, notes, and snippets.

View jamesladd's full-sized avatar
💭
Coding like the wind

James Ladd jamesladd

💭
Coding like the wind
View GitHub Profile
@jamesladd
jamesladd / HelloWorld.st
Created January 31, 2017 21:04
Hello World in Redline Smalltalk
Transcript cr; show: 'Hello World from Redline Smalltalk.'; cr.
@jamesladd
jamesladd / Object.st
Last active January 31, 2017 21:14
Object.st snippet
PrimObject subclass: #Object.
"category: accessing"
- class
"Primitive. Answer the object which is the receiver's class."
JVM primitive: 111.
- yourself
^ self.