Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
syntax [2019/08/25 19:17] – [String literals] neilssyntax [2019/12/09 08:38] – [Syntax] neils
Line 1: Line 1:
 ====== Syntax ====== ====== Syntax ======
  
-An **XC=BASIC** program is built from one or more plain ASCII text files that consist of lines, allowing only one statement per line.+An **XC=BASIC** program is built from one or more plain ASCII text files that consist of lines, allowing one or more statements per line.
  
-Each line may contain a statement, a label or both.+Each line may optionally contain a label and zero or more statements separated by a colon ('':''):
  
   label1: print "hello world"   label1: print "hello world"
   label2:   label2:
   print "hello again"   print "hello again"
 +  let x = 5 : print x : rem "these were more statements in a line"
 ===== Whitespace ===== ===== Whitespace =====