fargo icon indicating copy to clipboard operation
fargo copied to clipboard

Lisp with fibers for Node.js

Results 1 fargo issues
Sort by recently updated
recently updated
newest added

``` (define (sum a) (if (null? (cdr a)) (car a) (+ (car a) (sum (cdr a))))) (let [(a (list 1 2 3))] (puts (sum a))) (define prog (fiber () (let...