Markow Eduard
Markow Eduard
This problem is well known and dates back to the early releases of OP2 by Crelier Regis from the ETH. The reason for the problem is that the WITH statement...
Can you provide an example?
Norayr is right: This is due to strong typing. Probably the same happens with Modula-2 and Pascal. There is a long term discussion about the difference between types of variables...
OP2 conforms to the Oberon-2 report with respect to assignment compatibilty. This holds for all ETH OP2 versions (SPARC, PowerPC etc.) and also for the Linz OP2 versions (Windows, Mac,...
May I throw in a few general considerations? 1. Pragmas should be placed in comments. This keeps the language clean, the compiler simple. 2. Where to draw the line between...
The choice to include only one module or several modules for creating a dynamic link library on UNIX is an example of the mismatch between Oberon and UNIX. A Dynamic...
If we look at a common sitution where we Inc modulo and sometimes Dec modulo: FigNr := (FigNr + 1) MOD N; possible := CheckDisplay(FigNr); IF possible THEN DrawFigure(FigNr) ELSE...
Dear Stefan Thanks a lot for your contribution. This is a very good trick if one wants to program in a manner to reuse the statements in different contexts e.g....
This is true for the currrent version of the Haskell platform interface to the underlying UNIX API. With this entry in stack.yaml we encounter the problem: resolver: url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/13.yaml With...