New to EUPH 2.5
I am new to EUPH 2.5, but I have several programs I made with 1.4 which I am
trying to get running. Whenever I try, I get an error like this:
c:\EUPH25\INCLUDE\get.e:47
Syntax error - expected to see possibly '=', not '+'
string_next += 1
^
I know this has something to do with the new operator += but why does this
happen?
Here is the simple EUPH 1.4 file that I tried to run:
include get.e
include sort.e
include wildcard.e
include file.e
constant KEYBOARD = 0,
SCREEN = 1,
ERROR = 2
constant TRUE = 1
atom char
char = 0
while char != 'Q' do
char = getc(0)
? char
puts(1, char)
end while
|
Not Categorized, Please Help
|
|