Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 496 Bytes

File metadata and controls

22 lines (20 loc) · 496 Bytes

Java License

Jaf

Minimal interpreted programming language implemented in Java.

Examples

Factorial:

func factorial(n) {
    if (n == 0) 1 else n * factorial(n - 1)
}
factorial(5)

Array:

arr = [1, 2, 3]
arr[0] = 10
len = length(arr)

Feel free to open Issues or Pull Requests if you find bugs or have ideas :)