elvish/main.go

16 lines
421 B
Go
Raw Normal View History

// Elvish is a cross-platform shell, supporting Linux, BSDs and Windows. It
// features an expressive programming language, with features like namespacing
// and anonymous functions, and a fully programmable user interface with
// friendly defaults. It is suitable for both interactive use and scripting.
2013-06-14 17:22:55 +08:00
package main
2017-02-28 10:03:22 +08:00
import (
"os"
"github.com/elves/elvish/program"
2017-02-28 10:03:22 +08:00
)
2016-02-06 03:16:22 +08:00
func main() {
os.Exit(program.Main(os.Args))
}