Main Page

From the SETL Wiki

Jump to: navigation, search
Creation of new accounts has been disabled. Please edit anonymously.

Welcome to setl-lang.org.

SETL is...

A very-high-level general-purpose procedural language modelled on set theory. Read More...

 $ Example program.
 $ Prints "Hello, World!" followed by all primes between 1 and 100.
 program example;
   print('Hello, World!');
   loop
   for p in [2 .. 100] |
       ( notexists n in {2 .. p-1} |
         p mod n = 0 )
   do
     nprint(p);
     nprint(', ');
   end loop;
   print();
 end example;

More examples

Getting Started
Community
Wiki information
External Links

More...

Personal tools