ona/debug/app.ona

22 lines
263 B
Plaintext

# Test comment.
options = {
.title = "Afterglow",
.width = 1280,
.height = 800,
.tick_rate = 60,
["foo"] = "bar",
[42] = "42",
}
options["foo"] = "rab"
options[42] = "24"
@print(options.title)
@print(options["foo"])
@print(options[42])
return options