LeweyM/chimp
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
*Language Examples*
let bar int = 1
let threePlusBar = 3 + bar
put(threePlusBar) // puts 4
let foo bool = false
fun fooWorld(text String) {
put("hello " + text)
}
fooWorld("world")