From 6098bf84d62902ac59da7258623012113d900f48 Mon Sep 17 00:00:00 2001 From: greg Date: Thu, 16 Jul 2015 01:40:37 -0700 Subject: [PATCH] Initial commit --- .gitignore | 1 + Cargo.toml | 12 ++++++++++++ README | 4 ++++ src/main.rs | 3 +++ 4 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb5a316 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3a49afa --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "null_only_language" +version = "0.1.0" +authors = ["greg "] + +[dependencies] + +simplerepl = { path = "../simplerepl" } +llvm-sys = "*" + +[dependencies.iron_llvm] +git = "https://github.com/jauhien/iron-llvm.git" diff --git a/README b/README new file mode 100644 index 0000000..3c74863 --- /dev/null +++ b/README @@ -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 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}