github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/stdlib/load/load_notwin.go (about)

     1  // +build !windows
     2  
     3  package load
     4  
     5  import "github.com/hirochachacha/plua/internal/version"
     6  
     7  const (
     8  	root        = "/usr/local/"
     9  	ldir        = root + "share/lua/" + version.LUA_VERSION + "/"
    10  	defaultPath = ldir + "?.lua;" + ldir + "?/init.lua;" + "./?.lua;" + "./?/init.lua"
    11  
    12  	dsep   = "/"
    13  	psep   = ";"
    14  	mark   = "?"
    15  	edir   = "!"
    16  	ignore = "-"
    17  
    18  	config = dsep + "\n" + psep + "\n" + mark + "\n" + edir + "\n" + ignore + "\n"
    19  )