2018-01-01 05:25:20 +08:00
|
|
|
// 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"
|
|
|
|
|
2017-12-05 03:55:49 +08:00
|
|
|
"github.com/elves/elvish/program"
|
2017-02-28 10:03:22 +08:00
|
|
|
)
|
|
|
|
|
2016-02-06 03:16:22 +08:00
|
|
|
func main() {
|
2017-12-08 08:39:55 +08:00
|
|
|
os.Exit(program.Main(os.Args))
|
2017-06-20 18:26:09 +08:00
|
|
|
}
|