16 lines
		
	
	
		
			254 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			254 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| module: Main
 | |
|     import: os
 | |
|     globals:
 | |
|         declare sum: int = 0
 | |
|     function: main
 | |
|         params:
 | |
|         returns: int
 | |
|         body:
 | |
|             sum = 20
 | |
| 
 | |
|             os.print(sum)
 | |
| 
 | |
|             return 0
 | |
|         end body
 | |
|     end function
 | |
| end module | 
