Skip to content

Instantly share code, notes, and snippets.

View DaFrElUf's full-sized avatar

Daniel DaFrElUf

  • Lower Austria, Austria
View GitHub Profile
@hurbeana
hurbeana / mitschrift_lpc.md
Last active April 2, 2019 11:23
Eine Mitschrift zur LVA Logikprogrammierung und Constraints

13.03.19

Bsp 8

bruder_von(B,P) :-
	kind_von(B,E),
	kind_von(P,E),
	dif(B,P),
	männlich(B).