valhallac

Compiler for set-theoretic programming language.
git clone git://git.knutsen.co/valhallac
Log | Files | Refs | README | LICENSE

commit 8a2f62cbf31b7686c185371c0c27bb5c13c4cc4c
parent cacb37c86052a5fc8b02526552673ff2594f9ca8
Author: Demonstrandum <moi@knutsen.co>
Date:   Sun,  4 Aug 2019 17:13:03 +0100

Rename

Diffstat:
MCargo.toml | 6+++---
Msrc/bin.rs | 4++--
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "valhalla" +name = "valhallac" description = "Valhalla Language frontend, parser and AST compiler." homepage = "https://knutsen.co" repository = "https://github.com/Demonstrandum/valhalla" @@ -14,11 +14,11 @@ authors = ["Demonstrandum <moi@knutsen.co>"] edition = "2018" [lib] -name = "valhalla" +name = "valhallac" path = "src/lib.rs" [[bin]] -name = "valhalla" +name = "valhallac" path = "src/bin.rs" [dependencies] diff --git a/src/bin.rs b/src/bin.rs @@ -1,4 +1,4 @@ -use valhalla; +use valhallac; use std::env; fn is_vh_file(filename : &String) -> bool { @@ -11,6 +11,6 @@ pub fn main() { let files = args.filter(is_vh_file); for file in files { - valhalla::parse(&file); + valhallac::parse(&file); } } \ No newline at end of file