[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [plt-scheme] where to put extensions?



PS:

> Therefore, I need to compute the absolute path-string to plt-home.
> How?

This:
> - (find-system-path 'exec-file) ?

should be:
(call-with-values 
  (lambda () (split-path (find-system-path 'exec-file)))
  (lambda (x y z) x))

Sebastian