dash-lang 0.2.0

A simple interpreted language
Documentation
1
2
3
4
5
6
fn greet(name) {
  print("Hello")
  print(name)
}

greet("Dash")