SETL is a programming language created in 1969 by Jacob T. Schwartz.
#901on PLDB | 55Years Old |
SETL (SET Language) is a very high-level programming language based on the mathematical theory of sets. It was originally developed by (Jack) Jacob T. Schwartz at the New York University (NYU) Courant Institute of Mathematical Sciences in the late 1960s.. Read more on Wikipedia...
print("Hello, world!");
procedure factorial(n); -- calculates the factorial n!
return if n = 1 then 1 else n * factorial(n - 1) end if;
end factorial;
Feature | Supported | Example | Token |
---|---|---|---|
Print() Debugging | ✓ | ||
Line Comments | ✓ | -- A comment | -- |
Comments | ✓ | ||
Semantic Indentation | X |