Skip to content

Instantly share code, notes, and snippets.

@veer66
Created February 13, 2023 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veer66/845b303ffaacd9fa72cc7fef7204eb40 to your computer and use it in GitHub Desktop.
Save veer66/845b303ffaacd9fa72cc7fef7204eb40 to your computer and use it in GitHub Desktop.
year(math, 60).
year(ai, 62).
year(english, 65).
can_register(STUDENT_ID, SUBJECT) :- sub_string(STUDENT_ID, 0, 2, _, YEAR_STR),
number_string(YEAR, YEAR_STR),
year(SUBJECT, REQ_YEAR),
YEAR =< REQ_YEAR.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment