Skip to content

Instantly share code, notes, and snippets.

@0rbianta
Created January 13, 2022 21:22
Show Gist options
  • Save 0rbianta/9c2886bcc9f0537a67547c1d24e39f42 to your computer and use it in GitHub Desktop.
Save 0rbianta/9c2886bcc9f0537a67547c1d24e39f42 to your computer and use it in GitHub Desktop.
calc_fibonacci with CoffeeScript
calc_fibonacci = (count) ->
ptr = 1
last = 1
for _ in [1..count]
newv = ptr + last
last = ptr
ptr = newv
ptr
console.log calc_fibonacci 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment