Skip to content

brymer-meneses/lev-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lev Lang

Lev is WIP compiled programming language inspired by Python's syntax, leveraging LLVM.

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

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published