From 087a933772d3dbefcfcfc71d52514a4c4ef81a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Grodzi=C5=84ski?= Date: Sun, 22 Jun 2025 12:16:17 +0900 Subject: [PATCH] Updated readme --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8edeb1b..c016eb8 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -expression := literal | binary | grouping +# Bits Runner Builder -literal := INTEGER +## Overview +Bits Runner Builder (brb) is a compiler for Bits Runner Code (brc) language, which has been designed for the Bits Runner Builder operating system. It aims to be a low-level language, which can be a replacement for C while providing a revised syntax and a couple of quality of life improvement. It's a simple system programming language, so no class hierarchies, templates, or other unnecessary fluff. -grouping := "(" expression ")" +It has been been built on top of LLVM. -binary := expression operator expression +## Show me the code! -operator := "+" | "-" | "*" | "/" | "%" +### Data -expression -term factor "+" | "-" factor -factor primary "*" | "/" primary -primary INTEGER | "(" expression ")" \ No newline at end of file +### Control flow + +### Functions \ No newline at end of file