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"
|
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hc"
|
name = "hazure"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Hades
|
# Hazure
|
||||||
Programming language that compiles to C++!
|
Programming language that compiles to C++!
|
||||||
|
|
||||||
```sml
|
```sml
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "hc"
|
name = "hazure"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
@ -17,7 +17,7 @@ pub mod util;
|
||||||
use crate::util::log;
|
use crate::util::log;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let config_file = fs::read_to_string("./hades.toml");
|
let config_file = fs::read_to_string("./hazure.toml");
|
||||||
let config: config::Config;
|
let config: config::Config;
|
||||||
match config_file {
|
match config_file {
|
||||||
Ok(content) => {
|
Ok(content) => {
|
||||||
|
|
Loading…
Reference in a new issue