Skip to content

brymer-meneses/lev-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lev Lang

Yet another LLVM frontend for a language nobody will use

Syntax

fn fib(n: i32) -> i32 {
    if n == 1 or n == 2 {
        return 1;
    }

    return fib(n-1) + fib(n-2);
}

pub fn main() -> i32 {

    // this is a comment, hello there!
    std.print(fib(40));

    return 0;
}

About

Yet another LLVM frontend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published