HTBasic Help
×
Menu
Index

GESCAPE Code 1

 
Code 1 returns the number of color map entries. The return array must be a one dimensional INTEGER array and have at least one element. The first element is assigned the number of color map entries. The following program shows how to return the number of color map entries.
 
10 INTEGER A_return(0)
20 GESCAPE CRT,1;A_return(*)
30 PRINT A_return(0)
40 END