fork download
  1. blond(X) :-
  2. father(Father, X),
  3. blond(Father),
  4. mother(Mother, X),
  5. blond(Mother).
  6.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/home/lfQ5OQ/gplc0aOCib.o: In function `predicate(blond/1)':
(.text+0x48): undefined reference to `predicate(father/2)'
/home/lfQ5OQ/gplc0aOCib.o: In function `predicate(blond/1)':
(.text+0x8f): undefined reference to `predicate(mother/2)'
collect2: ld returned 1 exit status
compilation failed
stdout
Standard output is empty