github.com/elves/Elvish@v0.12.0/main.go (about)

     1  // Elvish is a cross-platform shell, supporting Linux, BSDs and Windows. It
     2  // features an expressive programming language, with features like namespacing
     3  // and anonymous functions, and a fully programmable user interface with
     4  // friendly defaults. It is suitable for both interactive use and scripting.
     5  package main
     6  
     7  import (
     8  	"os"
     9  
    10  	"github.com/elves/elvish/program"
    11  )
    12  
    13  func main() {
    14  	os.Exit(program.Main(os.Args))
    15  }