Toggle navigation
?
users online
Logout
Open hangout
Open chat for current file
suffix( L , L ) . % every list is a suffix of iteself, with the empty list [] as its prefix suffix( [_|L] , S ) :- suffix(L,S) . % otherwise, pop the list and try again.