diff --git a/README.md b/README.md index d234be90..a76039e4 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/m/myrddin.myr b/m/myrddin.myr new file mode 100644 index 00000000..97cf1081 --- /dev/null +++ b/m/myrddin.myr @@ -0,0 +1,6 @@ +use std + +const main = { + std.put("Hello world!\n") +} +