factor/basis/present/present.factor

17 lines
347 B
Factor
Raw Normal View History

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