Esterel is a programming language created in 1980.
#1480on PLDB | 44Years Old |
Esterel is a synchronous programming language for the development of complex reactive systems. The imperative programming style of Esterel allows the simple expression of parallelism and preemption. As a consequence, it is well suited for control-dominated model designs. Read more on Wikipedia...
module ABRO:
input A, B, R;
output O;
loop
[ await A || await B ];
emit O
each R
end module