Rust preliminaries

This commit is contained in:
Greg Shuflin 2023-01-14 02:00:02 -08:00
parent 6098bf84d6
commit ab53cfdb7d
4 changed files with 13 additions and 13 deletions

7
Cargo.lock generated Normal file
View File

@ -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"

View File

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

5
README
View File

@ -1,4 +1,3 @@
<h1 align="center">Schala - A Programming Language Implementation </h1>
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.

View File

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