You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ lua
Lua 5.3.3 Copyright (C) 1994-2016 Lua.org, PUC-Rio
> for k in pairs(package) do print(k) end
config
loaded
preload
loadlib
searchers
path
cpath
searchpath
In Moonsharp, only 2 fields exist:
$ mono moonsharp/repl/MoonSharp.exe
WARNING: The runtime version supported by this application is unavailable.
Using default runtime: v4.0.30319
MoonSharp Console 2.0.0.0 [std.mono.clr4]
Copyright (C) 2014-2016 Marco Mastropaolo
http://www.moonsharp.org
Type Lua code to execute it or type !help to see help on commands.
Welcome.
> for k in pairs(package) do print(k) end
loaded
config
Naturally I wouldn't expect package.cpath to be present in a .NET context, but the absence of package.preload, package.path, and package.searchers presents compatibility problems; in my case making it so that Fennel will not run.
The text was updated successfully, but these errors were encountered:
In PUC Lua, the
package
table has many fields:In Moonsharp, only 2 fields exist:
Naturally I wouldn't expect
package.cpath
to be present in a .NET context, but the absence ofpackage.preload
,package.path
, andpackage.searchers
presents compatibility problems; in my case making it so that Fennel will not run.The text was updated successfully, but these errors were encountered: