T. Kurt Bond
T. Kurt Bond
When I compile the following program with Vishap Oberon: ``` modula2 MODULE example; IMPORT Out; TYPE (** A rope. *) T* = POINTER TO TDesc; TDesc = RECORD END; (**...
This is with Version 0.5.5. Recently, I notice that the first time that I use Create Link on a particular web page it returns the *previous* text in the system...
It would be nice if there was an option to add some space between paragraphs. I find it is easier to read the page when the paragraphs are separated this...
On Fedora 38 x86_64 with opam's default switch having ocaml-4.14.1 I issue the following command: ``` opam install lablgtk ``` and get the following output: ``` The following actions will...
When I try to compile schemepunk using CHICKEN Scheme I get the following compilation error: ``` building schemepunk /usr/local/sw/versions/chicken/5.3.0/bin/csc -host -D compiling-extension -J -s -regenerate-import-libraries -setup-mode -I /usr/local/sw/src/scheme/chicken/eggs/schemepunk -C -I/usr/local/sw/src/scheme/chicken/eggs/schemepunk...
Given the following program, BrokenArray.Mod: ``` Oberon MODULE BrokenArray; IMPORT Out; VAR i, j: INTEGER; a1: ARRAY 2, 3 OF LONGINT; PROCEDURE p (a: ARRAY OF ARRAY OF LONGINT); BEGIN...