i have this .guile:

;; Guile config file


;; history
(use-modules (ice-9 readline)
    ;; does not works:
    ;; guile object oriented programming system
    ;;(oop goops)
    )

(activate-readline)


;; curly infix as in srfi-105
(read-enable 'curly-infix)

;; set current path in load path
;;(set! %load-path (reverse (cons "." (reverse %load-path))))
;; the above does not work
;; solution is to put this in shell:
;; export GUILE_LOAD_PATH="...:."

but (oop goops) is not working in REPL i have to issue an :

scheme@(guile-user)> (use-modules (oop goops))

Reply via email to