Find-System Way

I am trying to locate .rackettrcon Windows using the following command:

(find-system-path 'init) 

as stated in the Racket documentation. However, I keep getting the error message

expects argument of type <system-path-symbol>: given 'init.

Is this a bug in Racket or am I doing something wrong?

+3
source share
1 answer

Oh. I realized that I was looking at old documentation. find-system-pathnow works now as follows:

(find-system-path 'init-file)
+4
source

All Articles