factor/basis/present/present.factor

20 lines
392 B
Factor
Raw Normal View History

2009-01-09 18:58:00 -05:00
! Copyright (C) 2008, 2009 Slava Pestov.
2008-06-30 04:57:00 -04:00
! See http://factorcode.org/license.txt for BSD license.
2009-01-09 18:58:00 -05:00
USING: accessors math math.parser strings words vocabs
kernel effects ;
IN: present
GENERIC: present ( object -- string )
M: real present number>string ;
M: string present ;
M: word present name>> ;
M: vocab-spec present name>> ;
2009-01-09 18:58:00 -05:00
2008-06-08 17:47:20 -04:00
M: effect present effect>string ;
M: f present drop "" ;