diff options
Diffstat (limited to 'prolog')
-rwxr-xr-x | prolog/runner/daemon.pl | 2 | ||||
-rwxr-xr-x | prolog/runner/main.pl | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/prolog/runner/daemon.pl b/prolog/runner/daemon.pl index 0be3d9e..c482282 100755 --- a/prolog/runner/daemon.pl +++ b/prolog/runner/daemon.pl @@ -27,6 +27,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ :- use_module(library(clpfd)). :- use_module(library(clpr)). +:- use_module(library(lists)). + :- consult(sandbox). :- multifile prolog:error_message/3. diff --git a/prolog/runner/main.pl b/prolog/runner/main.pl index 2aa7f5c..3c324c8 100755 --- a/prolog/runner/main.pl +++ b/prolog/runner/main.pl @@ -26,6 +26,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ :- use_module(library(clpfd)). :- use_module(library(clpr)). +:- use_module(library(lists)). + :- consult(sandbox). :- multifile prolog:error_message/3. |