From a8cbeecfe8d8c8e3b3ae8b6dbbc144f5248ed861 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Fri, 26 Aug 2022 21:56:48 +0200 Subject: [PATCH] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e7a979d..d58d201 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 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. +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. ## Language example code @@ -59,8 +59,8 @@ commit :: (m: *Memory, size: SizeU): Bool ## Building -1. Requires *Windows*, *Visual Studio* and *Clang* to be installed -1. Run *build.bat* +1. Install **Visual Studio** and **Clang** +1. Run **build.bat** ## Resources