mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			85 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			85 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
| 
								 | 
							
								func test():
							 | 
						||
| 
								 | 
							
									var i = 0
							 | 
						||
| 
								 | 
							
									i += 5
							 | 
						||
| 
								 | 
							
									i -= 4
							 | 
						||
| 
								 | 
							
									i *= 10
							 | 
						||
| 
								 | 
							
									i %= 8
							 | 
						||
| 
								 | 
							
									i /= 0.25
							 | 
						||
| 
								 | 
							
									print(round(i))
							 |