home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / euphor10.zip / HELP.E < prev    next >
Text File  |  1993-05-28  |  757b  |  26 lines

  1. --                    Euphoria Syntax Summary
  2. -- Compile Options
  3. with[out] trace/profile/type_check/warning
  4.  
  5. -- Declarations
  6. [global] type_name var_name,...
  7. [global] constant  var_name = expression,...
  8. [global] procedure proc_name(parameters) ... end procedure
  9. [global] type      type_name(parameters) ... end type
  10. [global] function  func_name(parameters) ... end function
  11.  
  12. -- Commands
  13. include filename
  14. profile
  15.  
  16. -- Statements
  17. var_name = expression
  18. if expression then stmts [elsif expression then stmts] [else stmts] end if
  19. while expression do stmts end while
  20. for var_name = start to limit [by step] do stmts end for
  21. procedure_name(arguments)
  22. exit    -- from loop
  23. return  -- from function/type/procedure
  24. ! shell-command
  25. ? expression
  26.