-
In Scryer Prolog, how can a source file include another source file? |
Beta Was this translation helpful? Give feedback.
Answered by
triska
Jul 25, 2023
Replies: 1 comment
-
For the moment, you can partially work around the issue with the supported standard directive :- initialization(consult(...)). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mvolkmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
include/1
is a standard directive, so every conforming implementation must support it. Scryer does not yet support it, there is an issue for it: #634For the moment, you can partially work around the issue with the supported standard directive
initialization/1
: