31 lines
549 B
Plaintext
31 lines
549 B
Plaintext
|
proc main
|
||
|
{
|
||
|
"Hello!";
|
||
|
|
||
|
"This is a little text editor with syntax highlighting";
|
||
|
|
||
|
"Is it cool?" #noawait;
|
||
|
|
||
|
branch
|
||
|
{
|
||
|
"Yes"
|
||
|
{
|
||
|
"I know right?";
|
||
|
}
|
||
|
|
||
|
"No"
|
||
|
{
|
||
|
"Wow, no need to be a hater dude.";
|
||
|
"Seriously";
|
||
|
"...";
|
||
|
"Grow up";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
"Oh, forgot to mention that it also supports unicode.";
|
||
|
"Which makes it able to use all langages that use left to right writing.";
|
||
|
"Assuming that the character system isn't too complex.";
|
||
|
"Мой домашний питомец";
|
||
|
"悠輝さんに渡すつもりです";
|
||
|
jump main;
|
||
|
}
|