elvish/main.go
Qi Xiao a418b05875 New title and description.
Elvish is now a cross-platform shell instead of an UNIX shell, yay \o/
2017-12-31 21:25:20 +00:00

16 lines
421 B
Go

// 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.
package main
import (
"os"
"github.com/elves/elvish/program"
)
func main() {
os.Exit(program.Main(os.Args))
}