10 lines
236 B
Factor
10 lines
236 B
Factor
|
! Copyright (C) 2010 Slava Pestov.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: io io.files io.encodings.ascii ;
|
||
|
IN: tools.deploy.test.19
|
||
|
|
||
|
: main ( -- )
|
||
|
"vocab:license.txt" ascii file-contents write ;
|
||
|
|
||
|
MAIN: main
|