From 925689f4d6c481af6c0876a315377ab24950d611 Mon Sep 17 00:00:00 2001 From: Federico Carrone Date: Sat, 6 Jan 2024 23:56:46 -0300 Subject: [PATCH] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 62247aa..b6e2c6e 100644 --- a/README.md +++ b/README.md @@ -15,17 +15,6 @@ In the realm of low-level programming, language safety, performance and simplici Writing good code should be easy. The language must be simple enough to fit in a single person’s head. Programs are about transforming data into other forms of data. Code is about expressing algorithms, not the type system. We aim to develop a simpler version of Rust that includes an optional default runtime featuring green threads and a preemptive scheduler, similar to those found in Go and Erlang. -## Table of Contents - -- [Design](#design) -- - [Rust similarities and differences](#rust-similarities-and-differences) -- - [Core Features](#core-features) -- - - [Second Level Features](#second-level-features) -- - [Anti Features](#anti-features) -- - [Features that are being debated](#features-that-are-being-debated) -- [Syntax](#syntax) -- [Inspirations](#inspiration) - ## Installing from Source Building is as simple as cloning this repository and running the `make build` command, provided you have all the needed dependencies. @@ -44,6 +33,17 @@ If building LLVM from source, you'll need additional tools: - cmake 3.13.4 or later - libstdc++-static may be required on some Linux distributions such as Fedora and Ubuntu +## Table of Contents + +- [Design](#design) +- - [Rust similarities and differences](#rust-similarities-and-differences) +- - [Core Features](#core-features) +- - - [Second Level Features](#second-level-features) +- - [Anti Features](#anti-features) +- - [Features that are being debated](#features-that-are-being-debated) +- [Syntax](#syntax) +- [Inspirations](#inspiration) + ## Design ### Rust similarities and differences