// S C A N  D E F I N I T I O N S
//

manifest [
	NUMBER=-1
	STRING=-2
	ID=-3
	SNIL=-4

	LPAREN=$(
	RPAREN=$)
	SLASH=$/
	EQUAL=$=
	EOF=1000
]

structure SCANI: [
	stream word	//stream to get chars on.
	lastch word	//scanned ahead character
	backtoken word	//scanned ahead token
	idname word 10	//identifier.
]

manifest SCANIlen=13