Seed7 is a programming language created in 2005 by Thomas Mertes.
#373on PLDB | 18Years Old |
Seed7 is an extensible general-purpose programming language designed by Thomas Mertes. It is syntactically similar to Pascal and Ada. Along with many other features, it provides an extension mechanism. Read more on Wikipedia...
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln("Hello World");
end func;
# Hello World in Seed7
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln("Hello World!");
end func;