Hi, On Wed, 10 Apr 2013 11:26:35 +0900 Sungjin Chun <[email protected]> wrote:
> (sort '(1 2 3 4 5 6 7 8 9) >) > > I can run this code in the interpreter env. and I can even compile > this using chicken scheme compiler, however if I run the result > binary, > it emits following error message; > > Error: unbound variable: sort > > Call history: > > sort.scm:1: sort <-- > > What should I do? You need (use data-structures) in your code. You don't get that error in the interpreter because it automatically loads the data-structures unit. Best wishes. Mario -- http://parenteses.org/mario _______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
