RosettaCodeData/Task/Halt-and-catch-fire/JavaScript/halt-and-catch-fire.js
2026-04-30 12:34:36 -04:00

3 lines
89 B
JavaScript

f=()=>f();f();
/* This also does the same thing, but is harder to read */
(f=()=>f())();