Write a program which creates a file named DICKS.HTML and writes "<html><body>DICKSDICKSDICKS</body></html>" inside.
Language with the shortest code wins.
Name:
Anonymous2009-08-08 3:18
>>1
Uh, wouldn't it make more sense to serve it over the Internet by some means? (with-open-file (f "DICKS.HTML :direction :output)
(with-html-output (f)
(:html (:body "DICKSDICKSDICKS"))))