IN: tools.deploy.test.16 USING: typed sequences math strings io ; TYPED: typed-test ( x: integer y: string -- ) concat print ; : typed-main ( -- ) 3 "hi" typed-test ; MAIN: typed-main