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

13 lines
238 B
Plaintext

set one "The cat";
set two "sat on the mat";
set sentence one + SPACE + two;
append sentence " by itself.";
print sentence;
printwords sentence;
printwordcount sentence;
printlength sentence;
reverse sentence;
print sentence;
list;
exit;