G

G Programming Language
git clone http://git.omkov.net/G
Log | Tree | Refs | README | Download

AuthorJakob Wakeling <[email protected]>
Date2022-02-09 00:08:52
Commita4712dd6e12381d7e685c19ab1bffacefc93323c
Parent44d040093e5e4e9f401d0f1e676fd4802ecd2109

meta: Fix and simplify README

Diffstat

M README.md | 10 +++-------

1 files changed, 3 insertions, 7 deletions

diff --git a/README.md b/README.md
index 8821648..53de332 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 A modern alternative to **C** intended to be fast, simple, and pleasant.
 Influenced by **C**, **C++**, **Odin**, and **Rust**.
 
-Note that at present, **G** is highly unstable will certainly change.
+Note that at present, **G** is highly unstable and will certainly change.
 
 ## Example
 
@@ -20,7 +20,7 @@ main :: proc() -> s32 {
 
 ## Usage
 
-**G** is being developed on x86-64 Linux with Clang, and is untested elsewhere.
+**G** is being developed on x86-64 Linux, and is untested elsewhere.
 
 ### Dependencies
 
@@ -30,11 +30,7 @@ main :: proc() -> s32 {
 
 ### Building
 
-> To build the **G** compiler on UNIX, run `BuildUNIX.sh` or
-
-```sh
-cmake -S . -B build && cmake --build build
-```
+To build the **G** compiler on UNIX, run `BuildUNIX.sh`.
 
 ### Running