mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-05 01:32:14 +00:00
8 lines
139 B
Lua
8 lines
139 B
Lua
local Item = {}
|
|
|
|
function Item:new(name, sell_in, quality)
|
|
return { name = name, sell_in = sell_in, quality = quality }
|
|
end
|
|
|
|
return Item
|