Brychan Dempsey 093b4455a6
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
Added information to the readme
Added examples and automatic copying of them to the output directory, for launching in the example profiles
2021-03-29 12:45:37 +13:00

12 lines
286 B
Plaintext

set var1 "The";
set var2 "pesky";
set var3 "feline";
set var4 "sat,";
set var5 "for what is hopefully the last time,";
set var6 "on the mat.";
set longvar var1 + SPACE;
append longvar var2 + SPACE + var3 + SPACE + var4 + SPACE;
append longvar var5 + SPACE + var6 + NEWLINE;
list;
exit;