factor/extra/singleton/singleton.factor

11 lines
319 B
Factor
Raw Normal View History

2008-03-05 22:35:08 -05:00
! Copyright (C) 2007 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: kernel parser quotations prettyprint tuples words ;
2008-03-05 22:35:08 -05:00
IN: singleton
: SINGLETON:
CREATE-CLASS
dup { } define-tuple-class
dup unparse create-in reset-generic
2008-03-05 22:35:08 -05:00
dup construct-empty 1quotation define ; parsing