From fbe4865d5d964a1ae74cce95bd23af974f7ae811 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 26 Dec 2020 00:47:19 +0100 Subject: [PATCH] Updated On the benefits of using C as a language backend (markdown) --- On-the-benefits-of-using-C-as-a-language-backend.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/On-the-benefits-of-using-C-as-a-language-backend.md b/On-the-benefits-of-using-C-as-a-language-backend.md index 64e3cb6..5b30e97 100644 --- a/On-the-benefits-of-using-C-as-a-language-backend.md +++ b/On-the-benefits-of-using-C-as-a-language-backend.md @@ -7,11 +7,13 @@ To the end-user, it doesn't really matter what intermediate step is used to gene 2. Easy bootstrapping and development. To bootstrap V, you need to download `v.c` and run `cc v.c`. That's it. No dependencies, no bootstrapping chains, nothing. The developers of the language don't need to work on two parallel implementations, new features can be introduced and used in the language right away. -V has been 100% written in V since the release: +V has been 100% written in V since the release. + + 3. C gives us amazing platform support. C runs on everything, literally everything. LLVM supports lots of platforms and architectures, but it will never beat C. Being able to run V software on everything that C supports is huge.