Ether is a programming language written in Go. The language is inspired by the book Writing An Interpreter In Go
$ go get github.com/frederic2ec/ether
$ ether
$ ether
Usage: ether [options] [<filename>]
-i enable interactive mode
-v display version information
#=> $variable = "value"
#=> $a = 10
#=> $b = 5
#=> (a + b) / 2
25
#=> $a = 10
#=> $b = 20
#=> $c = if(b > a): 50 } else: 51 }
#=> c
50
This work is licensed under the terms of the GPL-3.0 License.