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.
		INPUT COMMAND:
			EXAMPLES:
				INPUT "String";variable$
			NOTES:
				-NO spaces between "String" and ; and variable$
				-NO NUMERIC input YET.
		LABEL:
			EXAMPLES:
				[LABEL]
		GOTO COMMAND:
			EXAMPLES:
				GOTO [LABEL]

	Upcoming:
	
		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.