Brychan Dempsey
093b4455a6
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
Added examples and automatic copying of them to the output directory, for launching in the example profiles
13 lines
238 B
Plaintext
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;
|