I am trying to understand the following function:
((lambda 'b
((lambda 'a '''''a) 'b `(this)))
(lambda (x)
(lambda (z)
`(,x ,@z)))
(car ''unquote))
the output is:
(quote quote quote quote quote this)
I am trying to understand the '@z'
meaning, someone knows?