RosettaCodeData/Task/Copy-a-string/Amazing-Hopper/copy-a-string-1.hopper
2023-07-01 13:44:08 -04:00

6 lines
88 B
Text

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