STAUTS: Unoperational / Operational For Debugging

Version: 1.0

NOTES:
	Commands Supported:
		PRINT COMMAND:
			EXAMPLES:
				PRINT "string" ; variable$
				PRINT "string" + variable$
				PRINT "string";variable
				PRINT "string"+variable$
			NOTES:
				-No functions allowed (such as str$()) as of yet.
				-No mathematical functions in PRINT statements allowed.

		DEFINE COMMAND:
			EXAMPLES:
				'#define variableName$
				'#define variableName
			NOTES:
				-All variables have to be defined.
				-There are no global variables as of yet.
				-Variables are currently in [label] scope only.

	Upcoming:
		[LABEL]
		
		GoTo
	
		Global

	Release Notes:
		-Currently, it just translates the "example.bas" to IL code stored in "temp.il."
		-Currently, it makes no use of ilasm.exe.