Conversation

Been thinking recently: Could variable captures be considered as coeffects? (\x => \y => x) : a -> b -> a (\x => \y =(x)=> x) : a -> b -> a (\y => x) : error! (\y =(x)=> x) : b -(a)-> b Kind of reminds me of capture lists in C++ 🤔
2
7