ona/debug/app.ona

25 lines
304 B
Plaintext

# Test comment.
pos = @vec3(10, 20, 0.3)
coord = pos.xz
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