home *** CD-ROM | disk | FTP | other *** search
/ CBM Funet Archive / cbm-funet-archive-2003.iso / cbm / manuals / anthology / p001.jpg < prev    next >
Joint Photographic Experts Group Image  |  2002-07-07  |  160KB  |  960x1306  |  8-bit (256 colors)
Labels: text | screenshot | font | number | black and white | parallel | menu
OCR: BASIC - Beginners All-Purpose Symbolic Instruction Code Commands and Statements Command/ Statement Example Purpose CLOSE 10 CLOSE n Closes logical file 'n'. CLR CLR Sets variables to zero or null. CMD CMD D Keep ieee device 'D' open to monitor bus. CONT CONT Continue program execution after a stop command. No program changes are permitted. DATA 10 DATA 1,2,3,4 20 DATA TOM, SUE Specifies data to be read left to right. 30 DATA " DOE, TOM" Alphabetics do not need to be enclosed in quotes. if strings contain spaces, commas, colons, or graphic characters, the string must be enclosed in quotes. DEF 10 DEF FN R(X) Defines function 'R DIM 10 DIM A(n) 20 DIM A(n,m,o,p) Specifies maximum number of elements in an array or matrix. 30 DIM A(n),B(m) Specifies maximum number of dimensions in an array. Nu ...