Basal
A general purpose low level programming language written in Python. Basal is an easy mid level programming language compiling to C. It has an easy syntax, similar to Python, Rust etc.
Contributors
-
SnmLogic (suggested the idea and now we're doing it)
-
Bunch-Of-Cells (The guy who decided the bad (obviously) name, I mean it sounds like Nasal!)
-
Mochii (DetectiveCatt, random dude who is in love with cats, weirdo)
Syntax
Variables
let a = 20
Functions
func a(xyz) {
// do something here
}
For loop
for i in 10..200{
out(i)
}
While loop
while true{
out("this gonna go forevaaaaaaaaaa")
}
Note: The syntax is not fixed and may change in the future.
~Mochii