Run to view results
Attempt to replicate https://linear.app/deepnote/issue/GEN-2356/create-test-app-for-crashing-the-kernel . Running the app and crashing te kernel should result in some kind of error rendered to the user.
Write while loop that just add a new number to an array until it crashes
arr = []
i = 0
while True:
arr.append(i)
i += 1
Run to view results
The kernel was interrupted, which indicates that the loop was running indefinitely and had to be stopped manually. This is expected behavior for an infinite loop that continuously appends to an array.