9 lines
200 B
Factor
9 lines
200 B
Factor
|
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
|