How do I include a .pl file in Prolog?

cody picture cody · Nov 4, 2010 · Viewed 17.6k times · Source

I'd like to include code from another source file. Does anyone know how to do that?

Answer

Fred Foo picture Fred Foo · Nov 4, 2010

If your file is called foo.pl, you can include it using

:- [foo].

or, equivalently and a bit more explicit

:- consult(foo).

or, if you're worried it may be loaded several times in a larger app

:- ensure_loaded(foo).

or, if you're using full-blown modules

:- use_module(foo).

though the exact name of the last predicate differs between Prolog versions.