From 8739acd52e603f7a08b93b6acf01df712c82fcc7 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Fri, 26 Aug 2022 21:55:27 +0200 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9e0663..e7a979d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # The Core Language -A compiled language that assumes C as base reality but it also has lots of ideas taken from Jai, Go like type system, order indepent declarations using Ion algorithm. Syntax currently is whitespace significant. Made to practice language development, *it's not supposed to be used*. It has lot's of ideas from modern programming languages that you would not find in any compiler book. It supports *modules* combined with *ordered independent declarations* and *lazy typechecking*. Also *runtime reflection*, *slices* and other standard features you would find in C. +A compiled language that assumes C as base reality but it also has lots of ideas taken from Jai, Go like type system, order indepent declarations using Ion algorithm. Syntax currently is whitespace significant. Made to practice language development, **it's not supposed to be used**. It has lot's of ideas from modern programming languages that you would not find in any compiler book. It supports **modules** combined with **ordered independent declarations** and **lazy typechecking**. Also **runtime reflection**, **slices** and other standard features you would find in C. The language is currently *very debuggable*. It can produce readable C code with line directives. This allows you to debug the programs with Visual Studio with full source mapping, exactly like you would debug C programs.