Starting to learn scheme and I come across this:
What is the difference between
("v" . 1)
and
("v" 1)
They seem to work the same, just want to know what the difference. I tend to use ("v" 1)
, but ( cons "v" 1 )
returns ("v" . 1)
. So, what's the difference?
Thank you