elvish/main.go
Qi Xiao a880b74a1b Put the actual entry function in a new run package.
This allows us to test the entry function.
2016-02-21 12:52:47 +01:00

10 lines
225 B
Go

// Elvish is an experimental Unix shell. It tries to incorporate a powerful
// programming language with an extensible, friendly user interface.
package main
import "github.com/elves/elvish/run"
func main() {
run.Main()
}