Arm to mips: Difference between revisions
From ICO wiki test
				
				
				Jump to navigationJump to search
				
				
 Created page with "==source code == example using python  def fib(n):     a,b = 1,1     for i in range(n-1):         a,b = b,a+b     return a"  | 
			
(No difference) 
 | 
Revision as of 03:44, 9 September 2016
source code
example using python
def fib(n):
   a,b = 1,1
   for i in range(n-1):
       a,b = b,a+b
   return a