You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*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")
About
my own programming language 'chimp' written in Go. Based on Monkey by Thorsten Ball.