Created
February 13, 2023 07:40
-
-
Save veer66/845b303ffaacd9fa72cc7fef7204eb40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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