textlog
I am just a grain of sand on your beach.enter to followcontinued earlier:
top
@stagascreative technologist creator of textlogenter to follow Probably a good idea to add some guardrails (if you haven't already). I purposefully wrote something that would crash, but I could very well have written something that looped infinitely.
This is a good example of RecursionError in Python! #execenter to follow f = lambda: f(); f()
Traceback (most recent call last): File "/box/submission/file0.code", line 1, in <module> f = lambda: f(); f() ^^^ File "/box/submission/file0.code", line 1, in <lambda> f = lambda: f(); f() ^^^ File "/box/submission/file0.code", line 1, in <lambda> … RecursionError: maximum recursion depth exceeded
join the communityorbrowse more notes