Эль-76

El-76

El-76

Computer language


El-76 (Russian: Эль-76)[1] is a high-level programming language developed in 1972–1973. The language was created for the Elbrus computer.[2] Participants in the creation of the language were: Boris Babayan, V. M. Pentkovskii, S. V. Semenikhin, S. V. Veretennikov, V. Y. Volkonsky, S. M. Zotov, A. I. Ivanov, Y. S. Rumyantsev, V. P. Torchigin, M. I. Kharitonov, and V. S. Shevekov.

Quick Facts Paradigm, Designed by ...

Эль-76 was developed at the Lebedev Institute of Precision Mechanics and Computer Engineering of the USSR Academy of Sciences. Its syntax was based on Russian language.[2]

Program sample

The sample below is a program of Hello World kind.

   процедура передатьпривет = проц(ф32 числоприветов)
   начало
     если числоприветов = 0 то
       печатьмс(стр8 "МИР не получил ни одного привета!")
     инес числоприветов = 1 то
       печатьмс(стр8 "В МИР был отправлен всего один привет!")
     иначе
       печатьмс(стр8 "МИРУ передали несколько приветов. А если точно, то их было");
       печать(числоприветов)
     все
   конец;
   
   печатьмс(стр8 "Привет просто так!"); % такой привет мартышка точно не потеряет
   печатькс();                          % разрыв строки
   передатьпривет(100)                  % привет из процедуры
 конец

Output:

Привет просто так!
МИРУ передали несколько приветов. А если точно, то их было 100

References



Share this article:

This article uses material from the Wikipedia article Эль-76, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.