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:36
>>6 #!/bin/sh
echo '<html><body>DICKSDICKSDICKS</body></html>' > DICKS.HTML
Optimized that for you.