mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 02:37:50 +08:00
a880b74a1b
This allows us to test the entry function.
10 lines
225 B
Go
10 lines
225 B
Go
// Elvish is an experimental Unix shell. It tries to incorporate a powerful
|
|
// programming language with an extensible, friendly user interface.
|
|
package main
|
|
|
|
import "github.com/elves/elvish/run"
|
|
|
|
func main() {
|
|
run.Main()
|
|
}
|