Fixes: #531
Co-Authored-By: Alexander von Recum <avrecum@users.noreply.github.com>
This commit is contained in:
Richie Bendall
2020-04-01 04:45:45 +13:00
parent 18020762eb
commit 119b24ec37
2 changed files with 8 additions and 0 deletions

View File

@@ -209,6 +209,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Dylan](d/dylan.dl)
* [Dyvil](d/Dyvil.dyv)
* [Ebuild](e/ebuild.ebuild)
* [Ec](e/ec.ec)
* [Echolisp](e/echolisp.echolisp)
* [Eiffel](e/Eiffel.eiff)
* [Elixir](e/elixir.ex)

7
e/ec.ec Normal file
View File

@@ -0,0 +1,7 @@
class HelloWorldApp : Application
{
void Main()
{
PrintLn("Hello World");
}
}