A programming language for everything.
Go to file
Goren Barak 137d9f5884 Added src/codegen/holeybytes.rs. 2023-12-24 10:44:37 -05:00
.images i promise i (might) stop updated the readme now 2023-11-16 19:17:28 -05:00
src Added src/codegen/holeybytes.rs. 2023-12-24 10:44:37 -05:00
.gitignore updated readme 2023-11-16 19:05:34 -05:00
Cargo.lock Started working on lexer. Temporarily using an external dependency. 2023-11-24 10:59:30 -05:00
Cargo.toml Hopefully made math recursively work and added `FasmCodegen` struct. 2023-12-01 16:58:35 -05:00
LICENSE Added LICENSE file 2023-11-29 11:18:56 -05:00
README.md explained myself 2023-11-24 18:42:19 -05:00
justfile Did some things to make it more recursive, but still doesn't compile 2023-11-28 17:57:43 -05:00

README.md

SkyLang

SkyLang is a programming language meant for AbleOS. Currently, ironically, it only works on Linux. It is written in Rust, and we are planning to self-host. Anyways, here's a code example:

let able = 100;
let os = 100;
fnaf adder(a, b) {
	return a + b;
}

assert_eq(200, adder(able, os));

Yes, the FNAF part is real.