Add Tag.repeats field

This commit is contained in:
David Capello 2022-10-24 14:03:54 -03:00
parent c7e4416f95
commit 82bd4e61dd

View File

@ -36,6 +36,10 @@ do
a.color = Color(255, 0, 0)
assert(a.color == Color(255, 0, 0))
assert(a.repeats == 0)
a.repeats = 1
assert(a.repeats == 1)
a.data = "Data"
assert(a.data == "Data")
end