factor/extra/singleton/singleton.factor

10 lines
267 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 tuples words ;
IN: singleton
: SINGLETON:
CREATE-CLASS
dup { } define-tuple-class
dup construct-empty 1quotation define ; parsing