Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- match ( function_signature, actual_parameters )
- if parameter count doesnt match error
- for argument in actual_parameters:
- normal_form(argument)
- has_progress = true
- while has_progress:
- has_progress = false
- for (param, arg) in (function_signature, actual_parameters):
- normal_form(param)
- has_progress |= find_new_bindings(param, arg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement