gitlab.com/apertussolutions/u-root@v7.0.0+incompatible/cmds/core/elvish/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/u-root/u-root/cmds/core/elvish/program"
    11  )
    12  
    13  func main() {
    14  	os.Exit(program.Main(os.Args))
    15  }