(Replying to PARENT post)
Here is a basic introduction to the stack and heap, with examples in C:
http://gribblelab.org/CBootcamp/7_Memory_Stack_vs_Heap.html
This might help with continuations: https://en.wikipedia.org/wiki/Continuation
Here is a really simple example of simulating a C return using call/cc:
(display
(call/cc
(lambda (return)
(display "hello ")
(return "world")
(display "never reached"))))๐คjustinethier๐9y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
What exactly about them do you want explained? I'll do my best to do it, or give a link, but I'm not sure if you want a general explanation of all three, or an explanation of the connection beteen them.
๐คqwertyuiop924๐9y๐ผ0๐จ๏ธ0
(Replying to PARENT post)