diff --git a/cope.lua b/cope.lua index c8c4277..411dea5 100644 --- a/cope.lua +++ b/cope.lua @@ -1,2 +1,7 @@ -local frustration = "high" -local n = nil +cope = {} + +function cope.level() + print('Coping level = High') +end + +return cope diff --git a/main.lua b/main.lua new file mode 100644 index 0000000..c1aed0a --- /dev/null +++ b/main.lua @@ -0,0 +1,2 @@ +local cope = require('cope') +cope.level()