Use variable to track copium status #1

Merged
Jonathan merged 4 commits from :master into master 2024-03-12 13:44:45 -05:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
cope = {}
function cope.level()
print('Coping level = High')
cope.level = "High"
function cope.get_level()
return cope.level
end
return cope

View File

@ -1,2 +1,2 @@
local cope = require('cope')
cope.level()
print(cope.get_level())