POSITION:028,114
COLOUR:STANDARD
TEXT:00,For example:
COLOUR:EUPHORIA
TEXT:32,     sequence name, address, city, country
COLOUR:STANDARD
TEXT:32,will just as easily declare these four variables as if you used
TEXT:16,a single declaration line for each variable. If you wanted to get really
TEXT:16,fancy, this is also a legal way to declare multiple variables:
COLOUR:EUPHORIA
TEXT:32,     atom hours_worked,
TEXT:16,          hourly_rate,
TEXT:16,          deductions, 
TEXT:16,          net_income
COLOUR:STANDARD
TEXT:32,Euphoria offers the ability to split variable declarations (and other
TEXT:16,types of statements) into several lines as opposed to one line. Just
TEXT:16,remember the commas, and only split the line where there is a space.

