Merge pull request #406 from PoroCYon/master

Added Myrddin
This commit is contained in:
Mike Donaghy
2017-05-07 03:13:49 -05:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -170,7 +170,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-wor
* [Dtrace](d/dtrace.d)
* [Dup](d/DUP.dup)
* [Dylan](d/dylan.dl)
* [Dyvil](d/Dyvil.dyvil)
* [Dyvil](d/Dyvil.dyv)
* [Ebuild](e/ebuild.ebuild)
* [Eiffel](e/Eiffel.eiff)
* [Elixir](e/elixir.ex)
@@ -312,6 +312,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-wor
* [Muf](m/muf.muf)
* [Mumps](m/mumps.m)
* [Mushcode](m/mushcode.mush)
* [Myrddin](m/myrddin.myr)
* [Mysql](m/mysql.sql)
* [Neko](n/neko.neko)
* [Nemerle](n/nemerle.n)

6
m/myrddin.myr Normal file
View File

@@ -0,0 +1,6 @@
use std
const main = {
std.put("Hello world!\n")
}