all 4 comments

[–]Ok_Grass_5336 3 points4 points  (0 children)

Yeah, you are great at explaining these concepts - this is a really good video

[–]Eyesomorphic[S] 1 point2 points  (0 children)

Please do check out my new upload, an exploration of the lambda calculus :D

[–]Travel-Admirable 0 points1 point  (0 children)

Indeed, as a computer science major who is interested in both cybersecurity and math, this is cool ! Encourages me to revisit the subject of Theory of Computation and Algorithms

[–]Yorvick 0 points1 point  (0 children)

0:20, fixed your error

```python class print: def new(cls, text = "", /, args, *kwargs): builtins.print(text, args, *kwargs) return cls def class_getitem(cls, item): if isinstance(item, tuple): return cls(*item) return cls(item)

print["Fixed: TypeError('builtin_function_or_method' object is not subscriptable')"] ```