POSITION:028,114
COLOUR:STANDARD
TEXT:00,Euphoria uses double periods (..) to indicate that this is not a single
TEXT:16,element we are accessing but an inclusive (meaning including the
TEXT:16,starting and ending points) range of elements. The program example below
TEXT:16,shows how to access a range of elements:
COLOUR:EUPHORIA
TEXT:32,sequence nine_numbers, first_four, last_five
TEXT:32,nine_numbers = {1,2,3,4,5,6,7,8,9}
TEXT:16,first_four = nine_numbers[1..4] 
TEXT:16,last_five = nine_numbers[5..9]
COLOUR:POINTS
TEXT:32,"first_four" contains {1,2,3,4}
TEXT:16,"last_five" contains {5,6,7,8,9}
COLOUR:STANDARD
TEXT:32,A receiving variable is always of type sequence, as using a range returns
TEXT:16,a sequence value, even if the starting and ending elements are the same.

