RosettaCodeData/Task/Copy-a-string/Amazing-Hopper/copy-a-string-1.hopper

7 lines
88 B
Plaintext

#include <hopper.h>
main:
s = "string to copy"
t = s
{s,"\n",t}println
exit(0)