github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/stdlib/load/load_windows.go (about) 1 package load 2 3 import "github.com/hirochachacha/plua/internal/version" 4 5 const ( 6 ldir = "!\\lua\\" 7 shrdir = "!\\..\\share\\lua\\" + version.LUA_VERSION + "\\" 8 defaultPath = ldir + "?.lua;" + ldir + "?\\init.lua;" + shrdir + "?.lua;" + shrdir + "?\\init.lua;" + ".\\?.lua;" + ".\\?\\init.lua" 9 10 dsep = "\\" 11 psep = ";" 12 mark = "?" 13 edir = "!" 14 ignore = "-" 15 16 config = dsep + "\n" + psep + "\n" + mark + "\n" + edir + "\n" + ignore + "\n" 17 )