Last active
May 25, 2022 13:11
-
-
Save Mroik/554b5cca73508674264f42e0cc7e35cf to your computer and use it in GitHub Desktop.
A meme in my friend group
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
associazione: type. | |
studente: type. | |
*: associazione. | |
;: studente -> associazione -> associazione. %infix right 1 ;. | |
apolitica: associazione -> type. | |
rappresentante: studente -> type. | |
corrotta: associazione -> type. | |
contiene_rapr: associazione -> type. | |
ha_rapr/0: contiene_rapr (X ; Xs) | |
<- rappresentante X. | |
ha_rapr/1: contiene_rapr (X ; Xs) | |
<- contiene_rapr Xs. | |
corrotta/0: corrotta X | |
<- apolitica X | |
<- contiene_rapr X. | |
% Includiamo solo il CdA per semplicità | |
aceti: studente. | |
dentello: studente. | |
oldani: studente. | |
sarti: studente. | |
brioni: studente. | |
settembrese: studente. | |
studentiunimi = aceti ; dentello ; oldani ; sarti ; brioni ; settembrese ; *. | |
studentiunimi/apolitica: apolitica studentiunimi. | |
settembrese/rappresentante: rappresentante settembrese. | |
% ?- corrotta studentiunimi. | |
% Solving... | |
% Empty Substitution. | |
% or | |
% ?- corrotta X. | |
% Solving... | |
% X = studentiunimi. |
So @StudentiUniMi is corrupted. When the bonifico da UniSì will arrive on my bank account?
So @StudentiUniMi is corrupted. When the bonifico da UniSì will arrive on my bank account?
Dunno, gotta ask @SetteMagic apparently
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would be true if only rule
corrotta/0
were true... though it's not