Je n'arrive pas à charger un fichier

J’ai téléchargé swi-prolog, quand je le lance, et que je veux charger un fichier, (je tape son nom ou "consult(helloworld.pl), mais je n’ai comme réponse que “|”, et pas de point d’interrogation, et quand je fais “ctrl+d”, j’ai: ^DERROR: Stream user_input:7:14 Syntax error: Unexpected end of file

?- [helloworld].

Or, some alternatives:

?- consult(helloworld).
?- consult('helloworld.pl').

Do not forget the final dot (.). That terminates the input. If you use quotes, make sure they match and use single quotes for file names.

1 Like