Merge pull request 'Use variable to track copium status' (#1) from Noah/git-gud:master into master

Reviewed-on: #1
This commit is contained in:
Jonathan 2024-03-12 13:44:45 -05:00
commit 06a3a24c1a
2 changed files with 4 additions and 4 deletions

View File

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

View File

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