> The prize is running out of PIDs
On a tangent, a job interview question for a systems programmer.
For a trivial fork bomb¹, explain what will happen _and_ estimate how long it will take (on hardware of your choice).
¹ For example,
#!/bin/sh
$0 & $0 &
For extra credit, explain what difference, if any, it will make if that is replaced by an equivalent program written in Common Lisp, Java, or Python.