From 0d016f8ae9d798ad78df6164befb88370483642e Mon Sep 17 00:00:00 2001 From: mmichlol Date: Sat, 7 Feb 2026 13:08:24 +0000 Subject: [PATCH] Add README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..cbf9de4 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# PCC Compiler (My C++ Compiler) + +![Version](https://img.shields.io/badge/version-0.0.6-blue.svg) +![Status](https://img.shields.io/badge/status-BETA-orange.svg) +![Platform](https://img.shields.io/badge/platform-Windows%20x64-lightgrey.svg) + +## Docs +https://nodrop.xyz/docs/docs.html + +**PCC Compiler** is a custom programming language compiler built from scratch in C++. It translates PCC code into x64 Assembly (NASM), which is then linked into a standalone Windows executable. + +## 🚀 Features +- **Custom Syntax**: C-like syntax easy for beginners. +- **Variables**: Support for `int`, `bool` and `string`. +- **include files**: you can include base files from compiler `#include ` or your own files `#include "myfile.pcc"`. +- **KeyBoard and Inputs Support**: now you can control keyboard inputs using `#include `. +- **Control Flow**: `if` statements support. +- **Functions**: Define and call `void` functions. +- **Native Compilation**: Compiles directly to x64 machine code. +- **More Informations**: For more informations check PCC Docs. + +## 🛠️ Usage +1. Download the latest release from the [Releases](../../releases) page. +2. Unzip the archive to C:/PCC/ +3. Run `start.bat` as Administrator. +4. Compile your code: `PCC.exe code.pcc`. + +--- +*Created by Michał Lewandowski*