Sets the ZONE width applied when commas are used in a PRINT statement to int-exp. The value of int-exp may range from 1 to 16. The default value of ZONE is 8.
Program Example.
00100 A = 10
00110 B = 12
00120 V0 = 123.76
00130 PRINT A,B,V0
00140 ZONE 16
00150 PRINT A,B,V0
00160 ZONE 1
00170 PRINT A,B,V0
00180 END