// test-icode.txt

to testopstr | i =
	for i 0 53
		prints opstr+(i*3) space

testopstr

// table of function pointer
funtab = array
	streq strlen strcpy atoi

to testfun =
	print funtab[0] space
	print funtab[1] space
	print funtab[2] space
	print funtab[3] nl

//testfun

to testopfmt | i =
	for i 0 53
		print opfmt[i] space

//testopfmt
