Changeset 15302 in project
- Timestamp:
- 08/02/09 20:48:07 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wiki/man/4/Getting started
r14114 r15302 589 589 real example would take far too much space here.) 590 590 591 /* fib.c */ 591 592 int fib(int n) { 592 593 int prev = 0, curr = 1; … … 603 604 Now we can call this function from Chicken. 604 605 606 ;;; fib-user.scm 605 607 #> 606 608 extern int fib(int n);
Note: See TracChangeset
for help on using the changeset viewer.