An open API service indexing awesome lists of open source software.

https://github.com/lloydlobo/compiler-cpp

Compiler for IO, a hobby programming language
https://github.com/lloydlobo/compiler-cpp

compiler cpp language

Last synced: about 1 month ago
JSON representation

Compiler for IO, a hobby programming language

Awesome Lists containing this project

README

        

# io lang: C++ Language Compiler

## Build

```shell
cmake -S . -B build && cmake --build build
./build/io test.io
echo $?

./out
echo $?
```

## `asm` with linking

```shell
nasm -felf64 test.asm
ld test.o -o test
./test
echo $?
```

## Credits

- YouTube video series "[Creating a Compiler](https://www.youtube.com/playlist?list=PLUDlas_Zy_qC7c5tCgTMYq2idyyT241qs)" by Pixeled
- Source [orosmatthew/hydrogen-cpp](https://github.com/orosmatthew/hydrogen-cpp) by Pixeled