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

11 lines
298 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
2012-06-13 14:29:35 -04:00
io.files.temp http.client kernel ;
2008-06-25 21:47:07 -04:00
: deploy-test-5 ( -- )
URL" http://localhost/foo.html" clone
2012-06-13 14:29:35 -04:00
"port-number" temp-file ascii file-contents string>number >>port
http-get 2drop ;
2008-06-25 21:47:07 -04:00
MAIN: deploy-test-5