# 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", } if pos.y > 0 do options["foo"] = "rab" options[42] = "24" @print("Conditional hit!") end @print(options.title) @print(options["foo"]) @print(options[42]) return options