Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 433 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 433 Bytes

Martta

A Programming language with Scala inspired syntax and static typechecking.

Examples

If you are familiar with Scala or Rust, Martta should be quite familiar. Here's a small snippet of its syntax:

let baz: int = 20;
let foo: Int = |a| => { a + baz };

println(foo(10)) // 30

Build

Make sure you have rustc 1.66.0at least.

git clone https://github.com/luisvgs/martta.git && cd martta && cargo build