Skip to content

always-maap/Limoo-Lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

75 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

limoo-lang logo

Limoo-lang is a demonstration purposes only compiler written in Rust

Overview

Examples

Sum

let sum = fn(a, b) {
  return a + b;
}

sum(5, 2)

Fibonacci

let fibonacci = fn(n) {
  if (n < 2) {
    return n;
  }
  
  return fibonacci(n - 1) + fibonacci(n - 2);
}

fibonacci(10)

License ๐Ÿ“„

under MIT-licensed.

About

๐Ÿ‹ Limoo-lang is a compiler written in Rust with the WASM binding for the web

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published