基本上,我分别用所有电台和线路制作了Prolog程序
station(station_name,[Line]). // My facts//
所以为了列出输入行中的电台,我制定了规则
line(Line,ListofStations):- station(ListofStations,[Line]).
任何有多条Line的电台都没有显示 例子
OxfordStreet,[central,bakerloo] // more than one member in a list
以上示例无效