dash-lang 0.2.0

A simple interpreted language
Documentation
1
2
3
4
5
6
let a = 10
let b = 5
let sum = a + b
let product = a * b
print(sum)
print(product)