From 922a1d2040c788834a182232ae165b3bfa001c5d Mon Sep 17 00:00:00 2001 From: Jonas <35030845+jgh07@users.noreply.github.com> Date: Wed, 1 Nov 2023 00:10:44 +0100 Subject: [PATCH] Update README.md --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 872dbade..a47f1ded 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Dassie Command Line Compiler (dc.exe) GitHub commit activity (branch) GitHub issues -A .NET Framework implementation of a Dassie compiler. For more information about the language, including code examples, visit the [dassie](https://github.com/loschsoftware/dassie) repository (will become public soon). For now, here's "Hello World!" in Dassie: +A .NET Framework implementation of a Dassie compiler. For more information about the language, including code examples, visit the [dassie](https://github.com/loschsoftware/dassie) repository. For now, here's "Hello World!" in Dassie: ````dassie println "Hello World!" @@ -13,8 +13,3 @@ Console.WriteLine "Hello World!" ```` Assuming the above code is contained in a file called ``hello.ds``, it can be compiled using the command ``dc hello.ds``, yielding an executable called ``hello.exe``. Alternatively, the command ``dc build`` can be used to compile all .ds source files in the current folder structure. - -
- -> [!NOTE] -> Once the documentation repository is public, the code examples in the ``examples`` directory will be removed from this repo.