Word description Defines a new singleton class. The class word itself is the sole instance of the singleton class.
Examples
USING: classes.singleton kernel io ;
IN: singleton-demo
USE: prettyprint
SINGLETON: foo
GENERIC: bar ( obj -- )
M: foo bar drop "a foo!" print ;
foo bar a foo!