Skip to content

Instantly share code, notes, and snippets.

@Mroik
Last active May 25, 2022 13:11
Show Gist options
  • Save Mroik/554b5cca73508674264f42e0cc7e35cf to your computer and use it in GitHub Desktop.
Save Mroik/554b5cca73508674264f42e0cc7e35cf to your computer and use it in GitHub Desktop.
A meme in my friend group
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.
@Mroik
Copy link
Author

Mroik commented May 25, 2022

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