2010-07-05 23:41:27 -04:00
|
|
|
! 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 ( -- )
|
2016-03-18 01:50:13 -04:00
|
|
|
! make sure to test vocab: paths
|
|
|
|
|
! this particular license.txt is a copy in this subdir
|
|
|
|
|
"vocab:license.txt" ascii file-contents write ;
|
2010-07-05 23:41:27 -04:00
|
|
|
|
|
|
|
|
MAIN: main
|