From bc23b02f8cf87a26167bf8766e7210e202167488 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 30 Mar 2020 05:01:43 +1300 Subject: [PATCH] Add Draco and Frink Fixes #645 Co-Authored-By: tfarnecim --- README.md | 2 ++ d/draco.d | 3 +++ f/frink.frink | 1 + 3 files changed, 6 insertions(+) create mode 100644 d/draco.d create mode 100644 f/frink.frink diff --git a/README.md b/README.md index 7966eb0..975cb50 100755 --- a/README.md +++ b/README.md @@ -185,6 +185,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Dogo](d%5CDOGO.dogo) * [Dongbei](d%5Cdongbei.dongbei) * [Dos](d%5Cdos.bat) +* [Draco](d%5Cdraco.d) * [Drive In Window](d%5CDrive-In%20Window.diw) * [Dtrace](d%5Cdtrace.d) * [Dup](d%5CDUP.dup) @@ -221,6 +222,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Fortran](f%5Cfortran.f90) * [Fortran77](f%5Cfortran77.f77) * [Fourier](f%5Cfourier.fourier) +* [Frink](f%5Cfrink.frink) * [Fsharp](f%5Cfsharp.fs) * [Fstar](f%5Cfstar.fst) * [Gammaplex](g%5Cgammaplex.gammaplex) diff --git a/d/draco.d b/d/draco.d new file mode 100644 index 0000000..23c62cd --- /dev/null +++ b/d/draco.d @@ -0,0 +1,3 @@ +proc main()void: + writeln("Hello world!"); +corp; \ No newline at end of file diff --git a/f/frink.frink b/f/frink.frink new file mode 100644 index 0000000..03dfa78 --- /dev/null +++ b/f/frink.frink @@ -0,0 +1 @@ +println["Hello World!"] \ No newline at end of file