24 lines
		
	
	
		
			260 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			260 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
 | 
						|
var i = 0
 | 
						|
 | 
						|
while i < 5:
 | 
						|
	@print("hello, world")
 | 
						|
 | 
						|
	i = i + 1
 | 
						|
end
 | 
						|
 | 
						|
if i > 6:
 | 
						|
	@print("`i` greater than `6`")
 | 
						|
elif i == 4:
 | 
						|
	@print("`i` is equal to `4`")
 | 
						|
else:
 | 
						|
	@print("i'unno")
 | 
						|
end
 | 
						|
 | 
						|
return {
 | 
						|
	.title = "Game",
 | 
						|
	.width = 1280,
 | 
						|
	.height = 800,
 | 
						|
	.tick_rate = 60,
 | 
						|
}
 |