Open main menu
Posts
Gists
Guilds
Users
Decipher
Docs
Open user menu
Log in
Sign up
Create a new gist
Posts
Gists
Guilds
Users
Decipher
Docs
Files
thor.src
bundler.json
src/utils.src
thor.src
import_code("/home/me/src/thor.src")
Thor = {}
Thor.init = function(a)
f = function(i)
return ThorUtils(i)
end function
Lst.map(a, @a)
end function
bundler.json
{
main: "thor.src",
exports: "Thor",
deps: {"Lst": "https://www.greyrepo.xyz/posts/list-lib?build=1.0.3"}
}
src/utils.src
ThorUtils = {}
ThorUtils.capitalize = function()
return 1
end function