Count in octal: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 1,484:
 
func octal m
output = ""
w = m
while fabs(w) > 0
oct = w & 7
w = floor(w / 8)
output = string(oct) + output
end
return output
</lang>
 
2,468

edits