elvish/main.go

10 lines
225 B
Go
Raw Normal View History

// Elvish is an experimental Unix shell. It tries to incorporate a powerful
2014-02-08 19:26:06 +08:00
// programming language with an extensible, friendly user interface.
2013-06-14 17:22:55 +08:00
package main
import "github.com/elves/elvish/run"
2016-02-21 19:00:02 +08:00
2016-02-06 03:16:22 +08:00
func main() {
run.Main()
}