Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

reverset/cbass

Repository files navigation

CBass Programming Language

Note:

  • This language was created as a quick experiment and is very buggy and unfinished. It was created as a final project for an intro to computer science class.
  • A lot of the code is messy, I was trying to create a parser without doing much research at all.

Example Code:

println("Hello, World!")

func factorial(x) {
    if x <= 1 -> return 1

    return x * factorial(x - 1)
}

println(factorial(getInput("Give me a number: ")))

println([1, 2, 3, 4])

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages