Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
1 ::> x // Move 1 to x
{* // While, i.e. begin loop;
x.le.3 // x is less than or equal to 3 (loop condition);
: // Do (main body of loop);
("Janet", " and", " Julia") // Array of three strings;
[x] // Subscript the array;
.ttyout; // Output the chosen string to the terminal;
x++ // Add one to x;
*}; // Close the loop
// This code (written in ::SHE+ILA::) will output the text "Janet and Julia" :) ;
// By the way, Julia is the wooee with the red hat and shoes, while Janet has the purple ones. ;