Basal

A general purpose low level programming language written in Python. Basal is the easiest low level programming language. It has a really easy syntax which is very similar to Python, Rust etc.

Contributors

  • SnmLogic

  • Bunch-Of-Cells

  • Mochii (DetectiveCatt)

Syntax

Variables

let a = 20

Functions

func a(nane, age) {
  // do something here
}

For loop

for i in 10..200{
  out(i)
}

While loop

while true{
  out("I am stuck here, save me !!!")
}

Note: The syntax is not fixed and may change in the future.