9 lines
224 B
Factor
9 lines
224 B
Factor
|
! Copyright (C) 2009 Slava Pestov.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: command-line io namespaces sequences ;
|
||
|
IN: tools.deploy.test.15
|
||
|
|
||
|
: main ( -- ) command-line get [ print ] each ;
|
||
|
|
||
|
MAIN: main
|