ch04ex06.pro

来自「prolog,人工智能推理程序,运行环境prolog」· PRO 代码 · 共 20 行

PRO
20
字号
/*
   Turbo Prolog 2.0 Chapter 4, Example Program 4
   
   Copyright (c) 1986, 88 by Borland International, Inc
   
*/
   
domains
   person = symbol

predicates
   father(person)                                 /* This person is a father */
   father(person, person)    /* One person is the father of the other person */

clauses
   father(Man) :- 
      father(Man,_).
   father(adam, seth).
   father(abraham, isaac).

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?