remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / present / present.factor
blobfe7025d559a05987a993b6c04f3c8680185dc834
1 ! Copyright (C) 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors math math.parser strings words kernel effects ;
4 IN: present
6 GENERIC: present ( object -- string )
8 M: real present number>string ;
10 M: string present ;
12 M: word present name>> ;
14 M: effect present effect>string ;
16 M: f present drop "" ;