mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
hades is already taken
This commit is contained in:
parent
04e35046b2
commit
4e040f9601
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -151,7 +151,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
||||
|
||||
[[package]]
|
||||
name = "hc"
|
||||
name = "hazure"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"clap",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Hades
|
||||
# Hazure
|
||||
Programming language that compiles to C++!
|
||||
|
||||
```sml
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "hc"
|
||||
name = "hazure"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
|
|
@ -17,7 +17,7 @@ pub mod util;
|
|||
use crate::util::log;
|
||||
|
||||
fn main() {
|
||||
let config_file = fs::read_to_string("./hades.toml");
|
||||
let config_file = fs::read_to_string("./hazure.toml");
|
||||
let config: config::Config;
|
||||
match config_file {
|
||||
Ok(content) => {
|
||||
|
|
Loading…
Reference in a new issue