factor/basis/tools/deploy/test/5/5.factor

11 lines
283 B
Factor
Raw Normal View History

2008-06-25 21:47:07 -04:00
IN: tools.deploy.test.5
USING: accessors urls io.encodings.ascii io.files math.parser
http.client kernel ;
2008-06-25 21:47:07 -04:00
: deploy-test-5 ( -- )
URL" http://localhost/foo.html" clone
"resource:port-number" ascii file-contents string>number >>port
http-get 2drop ;
2008-06-25 21:47:07 -04:00
MAIN: deploy-test-5