POSITION:028,114
COLOUR:STANDARD
TEXT:00,The following are actual Euphoria procedures that you will be learning
TEXT:16,about later. They are being presented here for you to see how each
TEXT:16,accepts parameters. Don't worry about what they do just yet.
COLOUR:EUPHORIA
TEXT:32,print(1,"Hey, now!")
TEXT:32,clear_screen()
TEXT:32,pixel({BRIGHT_BLUE,BRIGHT_RED,BRIGHT_GREEN},{100,150})
COLOUR:STANDARD
TEXT:32,Functions are identical in appearance to procedures, so the syntax
TEXT:16,of a function isn't hard to learn if you already understand the syntax of
TEXT:16,procedures. However, a function requires a slight addition to its syntax
TEXT:16,in order to return a value, as previously mentioned. The syntax of a
TEXT:16,function is on the next page.
