factor/basis/tools/deploy/test/16/16.factor

9 lines
200 B
Factor
Raw Normal View History

2009-10-16 22:22:01 -04:00
IN: tools.deploy.test.16
USING: typed sequences math strings io ;
TYPED: typed-test ( x: integer y: string -- ) <repetition> concat print ;
: typed-main ( -- ) 3 "hi" typed-test ;
MAIN: typed-main