语法错误:。或表达式1错误编译失败后预期的运算符

时间:2018-02-28 03:07:06

标签: prolog

namelist=integer*;

谓词

member12(namelist,namelist,namelist);

条款

member12([],L,L).
member12([X|L1],L2,[X|L3]):-
   member12(L1,L2,L3).

1 个答案:

答案 0 :(得分:0)

好吧,好像你没有提供整个代码,考虑到你的错误,我会在你的目标部分说出来。

你可能有这一行:

consult('D:\\Prolog\\list.pl')

错误消息指出 " .或运算符" 缺失

consult('D:\\Prolog\\list.pl').
% here _______________________↑