Introduction to Continuations

Поділитися
Вставка
  • Опубліковано 27 сер 2024

КОМЕНТАРІ • 3

  • @NikolajLepka
    @NikolajLepka Рік тому +6

    to any future viewers, there's a shorthand syntax in Racket called "let/cc" which saves you writing a lambda
    (let/cc k (k 1))
    is the same as
    (call/cc (lambda (k) (k 1)))

  • @jackcoleman2130
    @jackcoleman2130 4 роки тому +5

    This video was fantastic! thank you so much, I feel like I have a much better understanding of continuations now! I was wondering if it would be possible for a part two of this video to be released?

    • @krismicinski
      @krismicinski  4 роки тому +2

      Hi there Jack. So the second part includes some code that I need to keep internal to my class because it's not all my own content. However, I'd be happy to share it with you if you would email me (krismicinski@gmail.com).