In a lexical scanner I'm porting over from Modula-2 code,
they utilize the function call
PROCEDURE IsEOL* (ch: CHAR): BOOLEAN
where EOL is end-of-line.
In ETH Oberon's, EOL is ASCII character 0DX (or cr - carriage return).
In UNIX, EOL is ASCII character 0AX (or lf - line feed).
EOL is very much platform dependent. Does anyone know what EOL is
in Oberon/F? And, is it the same for Windows and Mac versions?
Thanks,
Al Freed