diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..8d7d961 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "schala" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 3a49afa..72c18ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,6 @@ [package] -name = "null_only_language" +name = "schala" version = "0.1.0" -authors = ["greg "] +authors = ["greg "] +edition = "2021" -[dependencies] - -simplerepl = { path = "../simplerepl" } -llvm-sys = "*" - -[dependencies.iron_llvm] -git = "https://github.com/jauhien/iron-llvm.git" diff --git a/README b/README index 3c74863..1b7b6a8 100644 --- a/README +++ b/README @@ -1,4 +1,3 @@ +

Schala - A Programming Language Implementation

-No-runtime-value-error-language - -A language wth a largely-python-like where there are no value errors. Can call null like a function +`schala` is a particular implementation of a yet-unnamed quasi-functional programming language. diff --git a/src/main.rs b/src/main.rs index e7a11a9..6726a2f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,3 @@ fn main() { - println!("Hello, world!"); + println!("Schala"); }