Coral 66

CORAL, short for Computer On-line Real-time Applications Language is a programming language originally developed in 1964 at the Royal Radar Establishment (RRE), Malvern, Worcestershire, in the United Kingdom. The R was originally for "radar", not "real-time". It was influenced primarily by JOVIAL, and thus ALGOL, but is not a subset of either. Wikipedia

Created Year: 1964
Designed by: Royal Radar Establishment
Aliases: CORAL, Computer On-line Real-time Applications Language

Wikidata: Q4117844

Programming paradigms: imperative programmingprocedural programmingstructured programming

Language types: procedural programming language

Hello World in Coral 66

'external' (
   'procedure' write (
      'value''integer', 'byte''array', 'value''integer');
)

'begin'
   'byte''array' Buf [1:12] := "Hello World", 10;

   write (1, Buf, 12);
'end'

Search on GitHub


Latest data update: 2024-10-06