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

7 lines
88 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <hopper.h>
main:
s = "string to copy"
t = s
{s,"\n",t}println
exit(0)