Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
239 B

  1. /*
  2. *
  3. * Original Javascript version by David Hedbor(http://www.bagley.org/~doug/shootout/)
  4. *
  5. */
  6. function fib(n)
  7. {
  8. if (n < 2) return 1
  9. return fib(n-2) + fib(n-1)
  10. }
  11. local n = ARGS.len()!=0?ARGS[0].tointeger():1
  12. print(fib(n)+"\n")