This repository has been archived on 2025-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025LogProg-project-GhentPr.../examples/basics/password.pl

19 lines
363 B
Prolog

login :-
getdata(_, _),
writeln('Welcome!').
login :-
repeat,
writeln('Sorry, you are not permitted.'),
getdata(_, _),
writeln('Welcome').
getdata(Name, Password) :-
write('Username: '),
read(Name),
write('Password: '),
read(Password),
user(Name, Password).
user(john, john1).
user(jimmy, jimmy1).
user(mary, mary1).