Skip to content

bit-rs/bit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🛰️ Bit

... is WIP programming language for building efficient software.

Examples

fn main() {
    let name = readln("Your name?: ");
    println("Hello, " <> name);
}
struct House {
  street: Int,
  id: Int,
}
fn fib(n: Int) -> Int {
    if n <= 1 {
        n
    } else {
        fib(n - 1) + fib(n - 2)
    }
}

About

🛰️ A simple, lightweight programming language to quickly bring your ideas to web.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors