I try to import some package using "require"... because of the Squirrel-lang coming from Lua.
But I found that both there is nonthing in both "squirrel3" and "sqstdlib3"..
So I do it like this :
// foo.nut
local foo = {}
return foo
// main.nut
local foo = loadfile("foo.nut")
foo.bar()
Also, there is no "dostring"
..... Do I need to implement a package manager myself?