Skip to content

Commit 4190fa5

Browse files
authored
PROJECT_LANG_1_V1.P
An archive of the first version of the first project language file for this project.
1 parent 580a47e commit 4190fa5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
mother_child(trude, sally).
2+
3+
father_child(tom, sally).
4+
father_child(tom, erica).
5+
father_child(mike, tom).
6+
7+
sibling(X, Y) :- parent_child(Z, X), parent_child(Z, Y).
8+
9+
parent_child(X, Y) :- father_child(X, Y).
10+
parent_child(X, Y) :- mother_child(X, Y).
11+
12+
write "I decided to make the project language file for this project (SNU/2D/Programming Tools/IDE/Prolog/) to be Prolog, as this is a Prolog IDE, and Prolog needs to be the main project language file for this project."
13+
% File info
14+
% File type: Prolog source file (*.pl) (may be mis-identified as Perl or Raku source code)
15+
% File version: 1 (Monday, August 16th 2021 at 6:42 pm)
16+
% Line count (including blank lines and compiler line): 17

0 commit comments

Comments
 (0)