mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
9 lines
419 B
Text
9 lines
419 B
Text
print( "this is a test script.");
|
|
print("This is really more correct,");
|
|
print("But the parser is currently somewhat");
|
|
print("flexible.");
|
|
print( "This kind of " + ("Thing" + " " + "is") + " trouble, though,");
|
|
print( "because after the parser sees a left paren, it exits on the");
|
|
print( "next one (if it is parsing a function).");
|
|
|
|
print("This " + "is " + ("the correct fucking way" - " fucking") + " to do this.");
|