2008-06-05 01:18:36 -04:00
|
|
|
USING: math math.parser calendar calendar.format strings words
|
2008-06-09 03:14:14 -04:00
|
|
|
kernel effects ;
|
2008-06-05 01:18:36 -04:00
|
|
|
IN: present
|
|
|
|
|
|
|
|
GENERIC: present ( object -- string )
|
|
|
|
|
|
|
|
M: real present number>string ;
|
|
|
|
|
|
|
|
M: timestamp present timestamp>string ;
|
|
|
|
|
|
|
|
M: string present ;
|
|
|
|
|
|
|
|
M: word present word-name ;
|
|
|
|
|
2008-06-08 17:47:20 -04:00
|
|
|
M: effect present effect>string ;
|
|
|
|
|
2008-06-05 01:18:36 -04:00
|
|
|
M: f present drop "" ;
|