* Posts by unused0

2 publicly visible posts • joined 10 Jul 2017

Wordle recreated in Pascal for the Multics operating system

unused0

Re: Performant?

Interrupts are very heavy weight on the Multics hardware; the emacs' interrupt-per-character paradigm was rough on Multics. Later enhancements to the front end processors allowed buffering of characters and greatly reduced the impact of emacs. Also, the simulator has several times the performance of the original h/w, and everybody can afford to have there own personal Multics system.

Multics resurrected: Proto-Unix now runs on Raspberry Pi or x86

unused0

Yes, it has COBOL.

r 19:24 0.172 65

edm hello.cobol

Segment not found.

Input.

000100 IDENTIFICATION DIVISION.

000200 PROGRAM-ID. HELLOWORLD.

000300

000400*

000500 ENVIRONMENT DIVISION.

000600 CONFIGURATION SECTION.

000700 SOURCE-COMPUTER. RM-COBOL.

000800 OBJECT-COMPUTER. RM-COBOL.

000900

001000 DATA DIVISION.

001100 FILE SECTION.

001200

100000 PROCEDURE DIVISION.

100100

100200 MAIN-LOGIC SECTION.

100300 BEGIN.

100500 DISPLAY "Multics rulez, UNIX droolz".

100600 STOP RUN.

100700 MAIN-LOGIC-EXIT.

100800 EXIT.

.

Edit.

w

q

r 19:24 0.128 4

cobol hello

COBOL, Version 5.4

r 19:24 0.477 206

hello$HELLOWORLD

Multics rulez, UNIX droolz

hello$HELLOWORLD: Run-unit hello$HELLOWORLD terminated (line 18).

r 19:24 0.036 6