Hi i am trying to make a Prolog program in which a user answers some question and I find the right game for him! I want to make a point system where i keep the name and the points for each game when the answer suite with the characteristics of the game
for example :
sims3 :-
simulationGame,
rolePlayingGame.
dragonAgeII :-
rolePlayingGame.
rolePlayingGamev :-
test(do_you_like_play_games_with_structured_decision_and_chars_development).
simulationGame :-
test(do_you_like_simulation_games).
but in Prolog i can't create an array what else should i do? Thanks in advance