Toggle navigation
?
users online
Logout
Open hangout
Open chat for current file
nota(X,suspenso) :- X < 5, !. nota(X,aprobado) :- X < 7, !. nota(X,notable) :- X < 9, !. nota(_,sobresaliente). /** <examples> ?- nota(6,X). ?- nota(6,sobresaliente). */