POSITION:028,114
COLOUR:STANDARD
TEXT:00,There are two types of programs that can translate Euphoria to machine
TEXT:16,language. Both do the same thing but they differ in their methods. One
TEXT:16,is called a compiler. It takes a Euphoria program and creates a machine
TEXT:16,language program. This machine language replica has the same name as your
TEXT:16,Euphoria program, but has a different file extension of .EXE. The other
TEXT:16,type of translator program is called an interpreter. It translates each
TEXT:16,Euphoria program statement to a machine language instruction, which is
TEXT:16,then run. This differs from a compiler, which creates the entire program
TEXT:16,to be run. Euphoria both comes with a compiler (BIND.BAT) and
TEXT:16,an interpreter (EX.EXE)
COLOUR:POINTS
TEXT:32,                                        EX filename.EX
COLOUR:STANDARD
TEXT:00,To run a program using EX.EXE, you type               .
COLOUR:POINTS
TEXT:32,                                                 BIND filename.EX
COLOUR:STANDARD
TEXT:00,To create an executable using BIND.BAT, you type                 . When
TEXT:16,the executable is created, type         .
COLOUR:POINTS
TEXT:00,                                filename

