Initial commit

This commit is contained in:
greg 2015-07-16 01:40:37 -07:00
commit 6098bf84d6
4 changed files with 20 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "null_only_language"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
[dependencies]
simplerepl = { path = "../simplerepl" }
llvm-sys = "*"
[dependencies.iron_llvm]
git = "https://github.com/jauhien/iron-llvm.git"

4
README Normal file
View File

@ -0,0 +1,4 @@
No-runtime-value-error-language
A language wth a largely-python-like where there are no value errors. Can call null like a function

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}