factor/library/tools/gensym.factor

19 lines
490 B
Factor
Raw Normal View History

! Copyright (C) 2004, 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
2005-05-18 16:26:22 -04:00
IN: words USING: kernel math namespaces sequences strings
unparser ;
2004-07-16 02:26:21 -04:00
SYMBOL: gensym-count
2004-07-16 02:26:21 -04:00
: (gensym) ( -- name )
"G:" global [
gensym-count [ 1 + dup ] change
2005-05-18 16:26:22 -04:00
] bind unparse append ;
: gensym ( -- word )
#! Return a word that is distinct from every other word, and
#! is not contained in any vocabulary.
(gensym) f (create) ;
2004-07-16 02:26:21 -04:00
global [ 0 gensym-count set ] bind