Component Pascal is a minor variant and refinement of the Oberon-2 programming language developed by Oberon Microsystems, and is now an open source community project.
Questions tagged [component-pascal]
3 questions
0
votes
1 answer
Can't start a server in BlackBox
I'm trying to start a server in BlackBox and so far I have just this
MODULE server;
IMPORT Dialog,Strings,Win:=WinApi, Server:=CommObxStreamsServer, Stream:=CommStreams;
BEGIN
Server.Start();
Server.Stop();
END…

Алина Горбунова
- 11
- 4
0
votes
1 answer
Run time debugger in Blackbox Component Builder (Component Pascal)
I am new to BlackBox Component Builder (http://blackboxframework.org/), and I am currently in the processes of understanding the differences to "standard" compiled languages (e.g. C, Pascal...). Tutorials are being very helpful.
One question that I…

Thiago Rangel
- 65
- 1
- 1
- 6
0
votes
1 answer
Initialize variables in the Component Pascal by default
Integer type variables are initialized by default in a strange way.
Look at this code:
MODULE MyTest;
IMPORT Log;
PROCEDURE Start*;
VAR a, b, c, d: INTEGER; (* This variables *)
BEGIN
Log.Int(a);
Log.Ln;
…

Yakoffs
- 17
- 4