jist 0.1.9

Welcome to Jist a lightweight and efficient programming language built in Rust, designed for simplicity, flexibility, and fast performance with a clean and readable syntax. Github: https://github.com/jon429r/JistR
Documentation
1
2
3
4
5
6
7
8
9
10
func addtwo(a: int, b: int) -> int {
  a+b;
  return sum;
}

let i = 1+1;
print(i);
let result: int = addtwo(1, 2);
print(result);