Arm to mips: Difference between revisions

From ICO wiki
Jump to navigationJump to search
Mdhasan (talk | contribs)
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 04: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