Changes

Locomotive BASIC

339 bytes added, 17:24, 19 December 2006
/* DATA */
: [...]
==== DATA x1[,x2,x3...]====: [Defines a data ''section'' to be used by <tt>READ</tt> calls.Data values can be of any type (integer, real or string) as long as the corresponding <tt>READ</tt> calls use a variable of the right type..] ''Example:''<pre>10 DATA "Hello, world!", 4220 READ message$:PRINT message$30 READ answer:PRINT "The answer is:";answer</pre>
==== DEF ====