ona/debug/app.ona

24 lines
260 B
Plaintext
Raw Normal View History

2023-05-23 23:22:29 +00:00
var i = 0
2023-08-24 23:45:29 +01:00
while i < 5:
2023-08-22 23:49:23 +01:00
@print("hello, world")
2023-08-13 02:03:43 +01:00
2023-08-22 23:49:23 +01:00
i = i + 1
end
2023-08-24 23:45:29 +01:00
if i > 6:
@print("`i` greater than `6`")
elif i == 4:
@print("`i` is equal to `4`")
else:
@print("i'unno")
end
2023-08-22 23:49:23 +01:00
return {
.title = "Game",
.width = 1280,
.height = 800,
.tick_rate = 60,
2023-05-23 23:22:29 +00:00
}