Added Seed7

Fixes: #744
Co-Authored-By: code2828 <code2828@users.noreply.github.com>
This commit is contained in:
Richie Bendall 2020-05-04 23:19:13 +12:00
parent 575eb4dd8f
commit a6539cefb2
2 changed files with 7 additions and 0 deletions

View File

@ -544,6 +544,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Scss](s/Scss.scss) * [Scss](s/Scss.scss)
* [Sed](s/sed.sed) * [Sed](s/sed.sed)
* [Seed](s/seed) * [Seed](s/seed)
* [Seed7](s/seed7.s7)
* [Self](s/self.self) * [Self](s/self.self)
* [Semicolon](s/semicolon) * [Semicolon](s/semicolon)
* [Sendstuff](s/SendStuff.ss) * [Sendstuff](s/SendStuff.ss)

6
s/seed7.s7 Normal file
View File

@ -0,0 +1,6 @@
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln("Hello World");
end func;