Vorx.Script's syntax is similar to BlitzMax'.

Vorx.Script always works like BlitzMax' "SuperStrict". It also is case-insensitive.

The differences are:
	-Comments are introduced with "//". There are no multiline-comments.
	-In variable declarations: Use "->" instead of ":", also use "Var" instead of "Local".
		Constant variables are not possible.
	-In conditional statements: Syntax "if [condition]:" and in new lines the statements,
		finish with "end if" or "endif
	-You can not use functions not declared in types. This is because of BlitzMax' Reflection behaviour.
	-In mathematical expressions (also in string concatenations) you can only use variables declared in
		the script, not functions/methods/things like that.
