factor/library/tools/gensym.factor

15 lines
419 B
Factor
Raw Normal View History

! Copyright (C) 2004, 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
2005-08-29 18:18:10 -04:00
IN: words
USING: hashtables kernel math namespaces parser sequences
strings ;
: gensym ( -- word )
#! Return a word that is distinct from every other word, and
#! is not contained in any vocabulary.
2005-08-29 18:18:10 -04:00
"G:"
global [ \ gensym dup inc get ] bind
number>string append f <word> ;
2004-07-16 02:26:21 -04:00
2005-08-29 18:18:10 -04:00
0 \ gensym global set-hash