# Test comment. pos = [10, 20, 0.3] 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