— Wait, rust can do it too, with slightly different syntax
— Yes, you just need to swap/change the variables normally
— Var m = function(n){
var a = 0;
var b = 1;
for(var i = 0, i<n, i=i+1){
a = b;
b = a + b;
};
return a;
};
console.log(m(4));
//so this should work?
Message permanent page
— Your Computer won't blow up
— I am using repl.it through my mobile so i don't know if the problem is from repl
— Disgusting lol (please don't do this...)
— Its showing that i is not define and some other funny errors