Hello, does anybody know, if there is an option to make GPC understand the old TuboPascal syntax for using units, where the unit-name is explicitely written before every call? It looks like this: ----------------------------------------- program utest; uses stapel; var data : char; begin data := 'a'; stapel.push(data); data := 'b'; stapel.push(data); data := 'c'; stapel.push(data); stapel.top(data); stapel.pop; writeln(data); stapel.top(data); stapel.pop; writeln(data); stapel.top(data); stapel.pop; writeln(data); end. ----------------------------------------- We need this, because this syntax is used in the scripts for the students, but now we want to change our remote test-environment from TP to GPC... BTW: I want to thank very much all those people, answering stupid newbie-questions, especially Frank Heckenbach! Greetings, Michael
participants (2)
-
Michael Paap -
Prof. A Olowofoyeku (The African Chief)