Arm to mips

From ICO wiki
Revision as of 04:44, 9 September 2016 by 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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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