You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- When we do:
divide 5 2
-- This is evaluated as:
((divide 5) 2)
-- First `divide 5` is evaluated.
-- The argument `5` is applied to `divide`, resulting in an intermediate function.
Pretty sure the the function is applied to the argument. See this in the first paragraph.
The text was updated successfully, but these errors were encountered: