https://github.com/matteoepitech/valka
Valka is a programming language made in C using LLVM.
https://github.com/matteoepitech/valka
c compiler cross-platform language llvm
Last synced: 9 months ago
JSON representation
Valka is a programming language made in C using LLVM.
- Host: GitHub
- URL: https://github.com/matteoepitech/valka
- Owner: matteoepitech
- License: mit
- Created: 2025-05-18T13:42:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-06-06T08:38:31.000Z (10 months ago)
- Last Synced: 2025-06-06T09:32:39.393Z (10 months ago)
- Topics: c, compiler, cross-platform, language, llvm
- Language: C
- Homepage:
- Size: 1.28 MB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Valka | Programming Language




[](https://choosealicense.com/licenses/mit/)
This programming language is a personal project I’m working on in my spare time to get familiar with LLVM technology. It’s heavily inspired by C and borrows some syntax from Rust. Enjoy!
## Dependencies
If you want to use **ValkaC** (Valka Compiler), be sure to have these dependencies installed on your computer:
- [clang](https://clang.llvm.org/) – for linking with the C runtime
- [llc](https://llvm.org/) – for generating native assembly from LLVM IR
## Build
To build the compiler `valkc` for `Linux` or `MacOS` or `Windows` run this:
```bash
./build.sh
```
## Usage/Examples
To compile a .vk source code run this:
```bash
./valkac file.vk
```
You can checkout the folder `samples/` which contains some examples.
## Documentation (W.I.P.)
[Documentation](https://matteoepitech.github.io/Valka/)
## Authors
- [@matteoepitech](https://www.github.com/matteoepitech)