mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-01 08:42:55 +08:00
a418b05875
Elvish is now a cross-platform shell instead of an UNIX shell, yay \o/
16 lines
421 B
Go
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))
|
|
}
|