# Hazure Programming language that compiles to C++! ```sml fun main: int = do @write("Hello, World!\n"); return 0; end; ``` Note: Everything in this project can be changed at anytime! (I'm still finding out what work best for lots of thing) if you have an idea, feel free to create an issues about it, or even create a PR! (I'd be very happy) # Prerequistie - `clang++`(preferred, default) or any C++ compiler - Rust (if you're going to build from source) # Configuration You can also configurate Hades compiler (currently you can only change the C++ compiler). Make a new file called `hades.toml` in the current working directory and the compiler will look for it! if there isn't one then it will use the default configuration: ```toml [compiler] compiler = "clang++" ``` # TODO > This is only contains important TODOs, smaller TODOs isn't listed here and instead scattered around among sources code. - More compiler configuration (e.x. complier options) - Optimization (IR) - Standard library & Runtime stuff # License Hades is licensed under both [MIT license](https://github.com/azur1s/hades/blob/master/LICENSE-MIT) and [Apache License](https://github.com/azur1s/hades/blob/master/LICENSE-APACHE) Anything helps! :D