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
Currently, something like (list x y z) will be compiled into the instructions to evaluate each arguments at runtime then write them to memory at a specified offset which will become our list.
However, for lists of literal elements such as (list 1 2 3), the representation could be computed and written to memory directly at compile time.
The text was updated successfully, but these errors were encountered:
Currently, something like
(list x y z)
will be compiled into the instructions to evaluate each arguments at runtime then write them to memory at a specified offset which will become our list.However, for lists of literal elements such as
(list 1 2 3)
, the representation could be computed and written to memory directly at compile time.The text was updated successfully, but these errors were encountered: