Stack overflow code golf - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T00:43:56Z http://stackoverflow.com/feeds/question/62188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62188/stack-overflow-code-golf 62 Stack overflow code golf Chris Jester-Young 2008-09-15T11:17:38Z 2009-11-15T21:26:32Z <p>To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.</p> <p>ETA: Just to be clear on this question, seeing as I'm an occasional Scheme user: tail-call "recursion" is really iteration, and any solution which can be converted to an iterative solution relatively trivially by a decent compiler won't be counted. :-P</p> <p>ETA2: I've now selected a “best answer”; see <a href="http://stackoverflow.com/questions/62188/stack-overflow-code-golf/71833#71833">this post</a> for rationale. Thanks to everyone who contributed! :-)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62189#62189 85 Answer by Chris Jester-Young for Stack overflow code golf Chris Jester-Young 2008-09-15T11:17:47Z 2008-09-15T11:17:47Z <p>My current best (in x86 assembly) is:</p> <pre><code>push eax jmp short $-1 </code></pre> <p>which results in 3 bytes of object code (<code>50 EB FD</code>). For 16-bit code, this is also possible:</p> <pre><code>call $ </code></pre> <p>which also results in 3 bytes (<code>E8 FD FF</code>).</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62191#62191 0 Answer by Niyaz for Stack overflow code golf Niyaz 2008-09-15T11:20:22Z 2008-09-15T11:20:22Z <p><strong>C++</strong>:</p> <pre><code>int overflow(int n) { return overflow(1); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62195#62195 47 Answer by aku for Stack overflow code golf aku 2008-09-15T11:21:28Z 2009-06-22T18:24:56Z <p>C#: </p> <pre><code>public int Foo { get { return Foo; } } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62205#62205 8 Answer by Cody Brocious for Stack overflow code golf Cody Brocious 2008-09-15T11:30:43Z 2009-02-28T01:18:49Z <p><strong>Python</strong>:</p> <pre><code>so=lambda:so();so() </code></pre> <p>Alternatively:</p> <pre><code>def so():so() so() </code></pre> <p>And if Python optimized tail calls...:</p> <pre><code>o=lambda:map(o,o());o() </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62209#62209 1 Answer by TK for Stack overflow code golf TK 2008-09-15T11:34:39Z 2008-09-15T11:39:41Z <p>PIC18:</p> <blockquote> <p>overflow</p> <blockquote> <pre><code> PUSH CALL overflow </code></pre> </blockquote> </blockquote> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62213#62213 0 Answer by Agnel Kurian for Stack overflow code golf Agnel Kurian 2008-09-15T11:36:13Z 2008-09-15T11:36:13Z <pre><code>int main(){ int a = 20; return main(); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62215#62215 0 Answer by Huppie for Stack overflow code golf Huppie 2008-09-15T11:37:05Z 2008-09-15T12:32:36Z <p><strong>JavaScript:</strong></p> <pre><code>function i(){ i(); } i(); </code></pre> <p><hr> <strong>C++</strong> Using a function-pointer:</p> <pre><code>int main(){ int (*f)() = &amp;main; f(); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62217#62217 20 Answer by Vinko Vrsalovic for Stack overflow code golf Vinko Vrsalovic 2008-09-15T11:39:32Z 2008-09-15T11:39:32Z <p>In english:</p> <pre><code>recursion = n. See recursion. </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62221#62221 1 Answer by Agnel Kurian for Stack overflow code golf Agnel Kurian 2008-09-15T11:42:44Z 2008-09-15T11:42:44Z <pre><code>/* In C/C++ (second attempt) */ int main(){ int a = main() + 1; return a; } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62231#62231 13 Answer by Chris Jester-Young for Stack overflow code golf Chris Jester-Young 2008-09-15T11:46:48Z 2008-09-15T11:46:48Z <p>Here's my C contribution, weighing in at 18 characters:</p> <pre><code>void o(){o();o();} </code></pre> <p>This is a <em>lot</em> harder to tail-call optimise! :-P</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62233#62233 0 Answer by GateKiller for Stack overflow code golf GateKiller 2008-09-15T11:47:37Z 2008-09-15T11:47:37Z <p>C#, done in 20 characters (exclusing whitespace):</p> <pre><code>int s(){ return s(); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62243#62243 2 Answer by Cody Brocious for Stack overflow code golf Cody Brocious 2008-09-15T11:53:11Z 2008-09-15T11:53:11Z <p><strong>CIL/MSIL</strong>:</p> <pre><code>loop: ldc.i4.0 br loop </code></pre> <p>Object code:</p> <pre><code>16 2B FD </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62244#62244 121 Answer by GateKiller for Stack overflow code golf GateKiller 2008-09-15T11:53:38Z 2008-09-15T11:53:38Z <p>You could also try this in C#.net</p> <pre><code>throw new StackOverflowException(); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62318#62318 18 Answer by stusmith for Stack overflow code golf stusmith 2008-09-15T12:24:45Z 2008-09-15T12:24:45Z <p>How about the following in BASIC:</p> <pre><code>10 GOSUB 10 </code></pre> <p>(I don't have a BASIC interpreter I'm afraid so that's a guess).</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62321#62321 76 Answer by Cody Brocious for Stack overflow code golf Cody Brocious 2008-09-15T12:25:47Z 2008-09-15T19:46:46Z <p><strong>Nemerle</strong>:</p> <p>This <strong>crashes the compiler</strong> with a StackOverflowException:</p> <pre><code>def o(){[o()]} </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62323#62323 3 Answer by dr_bonzo for Stack overflow code golf dr_bonzo 2008-09-15T12:26:09Z 2008-09-15T12:26:09Z <p>Ruby:</p> <pre><code>def s() s() end; s() </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62370#62370 16 Answer by Chris Jester-Young for Stack overflow code golf Chris Jester-Young 2008-09-15T12:33:25Z 2008-09-15T12:33:25Z <p>I loved <a href="#62321" rel="nofollow">Cody's answer</a> heaps, so here is my similar contribution, in C++:</p> <pre><code>template &lt;int i&gt; class Overflow { typedef typename Overflow&lt;i + 1&gt;::type type; }; typedef Overflow&lt;0&gt;::type Kaboom; </code></pre> <p>Not a code golf entry by any means, but still, anything for a meta stack overflow! :-P</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62379#62379 2 Answer by Ozgur Ozcitak for Stack overflow code golf Ozgur Ozcitak 2008-09-15T12:35:03Z 2008-09-15T12:35:03Z <p><strong>Lisp</strong></p> <pre><code>(defun x() (x)) (x) </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62399#62399 2 Answer by Andrew Johnson for Stack overflow code golf Andrew Johnson 2008-09-15T12:37:25Z 2008-09-17T13:40:17Z <pre><code>a{return a*a;}; </code></pre> <p>Compile with:</p> <pre><code>gcc -D"a=main()" so.c </code></pre> <p>Expands to:</p> <pre><code>main() { return main()*main(); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62402#62402 1 Answer by aku for Stack overflow code golf aku 2008-09-15T12:37:42Z 2008-09-15T12:37:42Z <p>c# again:</p> <pre><code>class Foo { public Foo() {new Foo(); } } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62407#62407 7 Answer by asksol for Stack overflow code golf asksol 2008-09-15T12:39:09Z 2008-09-15T12:45:21Z <p>perl in 12 chars:</p> <pre><code>$_=sub{&amp;$_};&amp;$_ </code></pre> <p>bash in 10 chars (the space in the function is important):</p> <pre><code>i(){ i;};i </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62412#62412 1 Answer by JosephStyons for Stack overflow code golf JosephStyons 2008-09-15T12:40:39Z 2008-09-15T12:40:39Z <p>Complete Delphi program.</p> <pre><code>program Project1; {$APPTYPE CONSOLE} uses SysUtils; begin raise EStackOverflow.Create('Stack Overflow'); end. </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62420#62420 0 Answer by Sean Cameron for Stack overflow code golf Sean Cameron 2008-09-15T12:41:28Z 2008-09-15T12:41:28Z <p>Clarion:</p> <pre><code>Poke(0) </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62432#62432 4 Answer by Manrico Corazzi for Stack overflow code golf Manrico Corazzi 2008-09-15T12:43:04Z 2008-09-15T13:02:19Z <p><strong>Java</strong> (embarassing):</p> <pre><code>public class SO { private void killme() { killme(); } public static void main(String[] args) { new SO().killme(); } } </code></pre> <p><strong>EDIT</strong> Of course it can be considerably shortened:</p> <pre><code>class SO { public static void main(String[] a) { main(null); } } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62468#62468 1 Answer by Antti Sykäri for Stack overflow code golf Antti Sykäri 2008-09-15T12:46:40Z 2008-09-15T14:48:24Z <p>so.c in <strong>15 characters</strong>:</p> <pre><code>main(){main();} </code></pre> <p>Result:</p> <pre><code>antti@blah:~$ gcc so.c -o so antti@blah:~$ ./so Segmentation fault (core dumped) </code></pre> <p><strong>Edit</strong>: Okay, it gives warnings with -Wall and does not cause a stack overflow with -O2. But it works!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62568#62568 0 Answer by Alnitak for Stack overflow code golf Alnitak 2008-09-15T12:57:10Z 2008-09-15T12:57:10Z <p>I tried to do it in Erlang:</p> <pre><code>c(N)-&gt;c(N+1)+c(N-1). c(0). </code></pre> <p>The double invocation of itself makes the memory usage go up <code>O(n^2)</code> rather than <code>O(n)</code>.</p> <p>However the Erlang interpreter doesn't appear to manage to crash.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62596#62596 0 Answer by Leo Lännenmäki for Stack overflow code golf Leo Lännenmäki 2008-09-15T13:00:13Z 2008-09-15T13:00:13Z <p><strong>JavaSript:</strong></p> <p>Huppies answer to one line:</p> <pre><code>(function i(){ i(); })() </code></pre> <p>Same amount of characters, but no new line :)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62609#62609 0 Answer by kinjal for Stack overflow code golf kinjal 2008-09-15T13:01:30Z 2008-09-15T13:01:30Z <p>recursion is old hat. here is mutual recursion. kick off by calling either function.</p> <pre><code>a() { b(); } b() { a(); } </code></pre> <p>PS: but you were asking for shortest way.. not most creative way!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62733#62733 1 Answer by Michal for Stack overflow code golf Michal 2008-09-15T13:13:58Z 2008-09-16T11:49:29Z <p>Java (complete content of X.java):</p> <pre><code>class X { public static void main(String[] args) { main(null); }} </code></pre> <p>Considering all the syntactic sugar, I am wondering if any shorter can be done in Java. Anyone?</p> <p><strong>EDIT:</strong> Oops, I missed there is already almost identical solution posted.</p> <p><strong>EDIT 2:</strong> I would say, that this one is (character wise) the shortest possible</p> <pre><code>class X{public static void main(String[]a){main(null);}} </code></pre> <p><strong>EDIT 3:</strong> Thanks to Anders for pointing out null is not optimal argument, so it's shorter to do:</p> <pre><code>class X{public static void main(String[]a){main(a);}} </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62786#62786 0 Answer by whythehellcantivote for Stack overflow code golf whythehellcantivote 2008-09-15T13:19:41Z 2008-09-15T13:19:41Z <p>On the cell spus, there are no stack overflows, so theres no need for recursion, we can just wipe the stack pointer.</p> <p>asm("andi $1, $1, 0" );</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62809#62809 4 Answer by Anders Sandvig for Stack overflow code golf Anders Sandvig 2008-09-15T13:22:44Z 2008-09-15T13:30:10Z <p>3 bytes: <code><pre> label: pusha jmp label </pre></code></p> <p><Strong>Update</strong></p> <p>According to <a href="http://www.penguin.cz/~literakl/intel/c.html#CALL" rel="nofollow">the (old?) Intel(?) documentation</a>, this is also 3 bytes:</p> <p><code><pre> label: call label </pre></code></p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62917#62917 0 Answer by JWHEAT for Stack overflow code golf JWHEAT 2008-09-15T13:35:37Z 2008-09-15T14:37:31Z <p><strong>PHP</strong> - recursion just for fun. I imagine needing a PHP interpreter takes it out of the running, but hey - it'll make the crash.</p> <pre><code>function a() { a(); } a(); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62973#62973 1 Answer by shelfoo for Stack overflow code golf shelfoo 2008-09-15T13:42:36Z 2008-09-15T13:42:36Z <p>There was a perl one already, but this is a couple characters shorter (9 vs 12) - and it doesn't recurse :)</p> <blockquote> <p>s//*_=0/e</p> </blockquote> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63020#63020 1 Answer by JudgeDread for Stack overflow code golf JudgeDread 2008-09-15T13:47:40Z 2008-09-15T13:47:40Z <p>GWBASIC output...</p> <pre><code>OK 10 i=0 20 print i; 30 i=i+1 40 gosub 20 run 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 Out of memory in 30 Ok </code></pre> <p>Not much stack depth there :-)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63025#63025 0 Answer by bgee for Stack overflow code golf bgee 2008-09-15T13:48:02Z 2008-09-15T14:03:39Z <pre><code>//lang = C++... it's joke, of course //Pay attention how void StackOverflow(){printf("StackOverflow!");} int main() { StackOverflow(); //called StackOverflow, right? } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63061#63061 1 Answer by aku for Stack overflow code golf aku 2008-09-15T13:51:49Z 2008-09-15T14:02:40Z <p>F#</p> <p>People keep asking "What is F# useful for?" </p> <pre><code>let rec f n = f (n) </code></pre> <p>performance optimized version (will fail faster :) )</p> <pre><code>let rec f n = f (f(n)) </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63116#63116 0 Answer by jmillikan for Stack overflow code golf jmillikan 2008-09-15T13:59:33Z 2009-02-12T22:35:53Z <p>I have a list of these at <a href="http://www.everything2.com/index.pl?node_id=1904026" rel="nofollow">Infinite Loop</a> on E2 - see just the ones indicated as "Stack Overflow" in the title.</p> <p>I think the shortest there is</p> <pre><code>[dx]dx </code></pre> <p>in <a href="http://c2.com/cgi/wiki?DeeCee" rel="nofollow">dc</a>. There may be a shorter solution in <a href="http://c2.com/cgi/wiki?FalseLanguage" rel="nofollow">False</a>.</p> <p>EDIT: Apparently this doesn't work... At least on GNU dc. Maybe it was on a BSD version.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63137#63137 0 Answer by Ashley Williams for Stack overflow code golf Ashley Williams 2008-09-15T14:01:40Z 2008-09-15T14:01:40Z <p>Ruby:</p> <pre><code>def i()i()end;i() </code></pre> <p>(17 chars)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63269#63269 4 Answer by Evan DeMond for Stack overflow code golf Evan DeMond 2008-09-15T14:15:07Z 2008-09-15T14:15:07Z <p>In Lua:</p> <pre><code>function f()return 1+f()end f() </code></pre> <p>You've got to do something to the result of the recursive call, or else tail call optimization will allow it to loop forever. Weak for code golf, but nice to have!</p> <p>I guess that and the lengthy keywords mean Lua won't be winning the code golf anytime soon.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63290#63290 2 Answer by tomdemuyt for Stack overflow code golf tomdemuyt 2008-09-15T14:16:38Z 2008-09-15T14:16:38Z <p>batch program called call.cmd;</p> <p>call call.cmd</p> <pre><code>****** B A T C H R E C U R S I O N exceeds STACK limits ****** Recursion Count=1240, Stack Usage=90 percent ****** B A T C H PROCESSING IS A B O R T E D ****** </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63353#63353 0 Answer by davidnicol for Stack overflow code golf davidnicol 2008-09-15T14:21:41Z 2008-09-15T14:21:41Z <p><strong>Perl</strong> in 10 chars</p> <pre><code>sub x{&amp;x}x </code></pre> <p>Eventually uses up all available memory.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63400#63400 0 Answer by davidnicol for Stack overflow code golf davidnicol 2008-09-15T14:27:41Z 2008-09-15T14:27:41Z <p><strong>MS-DOS batch:</strong></p> <pre><code>copy CON so.bat so.bat ^Z so.bat </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63519#63519 5 Answer by Misha for Stack overflow code golf Misha 2008-09-15T14:41:42Z 2008-09-15T14:41:42Z <p>Java</p> <p>Slightly shorter version of the Java solution.</p> <pre><code>class X{public static void main(String[]a){main(a);}} </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63529#63529 2 Answer by Kyle Cronin for Stack overflow code golf Kyle Cronin 2008-09-15T14:43:06Z 2008-09-15T14:43:06Z <p>In Scheme, this will cause the interpreter to run out of memory:</p> <pre><code>(define (x) ((x))) (x) </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63534#63534 0 Answer by Antti Sykäri for Stack overflow code golf Antti Sykäri 2008-09-15T14:44:00Z 2008-09-15T14:44:00Z <p>Shell script solution in <strong>10 characters</strong> including newlines:</p> <p>Well, technically not stack overflow but logically so, if you consider spawning a new process as constructing a new stack frame.</p> <pre><code>#!sh ./so </code></pre> <p>Result:</p> <pre><code>antti@blah:~$ ./so [disconnected] </code></pre> <p>Whoops. Note: <strong>don't try this at home</strong></p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63613#63613 1 Answer by Robert S. for Stack overflow code golf Robert S. 2008-09-15T14:53:39Z 2008-09-15T14:53:39Z <p>In Whitespace, I think:</p> <p>It probably won't show up. :/</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63812#63812 5 Answer by bk1e for Stack overflow code golf bk1e 2008-09-15T15:14:11Z 2008-09-15T15:14:11Z <p><strong>C</strong> - It's not the shortest, but it's recursion-free. It's also not portable: it crashes on Solaris, but some alloca() implementations might return an error here (or call malloc()). The call to printf() is necessary.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;alloca.h&gt; #include &lt;sys/resource.h&gt; int main(int argc, char *argv[]) { struct rlimit rl = {0}; getrlimit(RLIMIT_STACK, &amp;rl); (void) alloca(rl.rlim_cur); printf("Goodbye, world\n"); return 0; } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63848#63848 0 Answer by David B for Stack overflow code golf David B 2008-09-15T15:17:07Z 2008-09-15T15:17:07Z <p>C# with 27 non-whitespace characters - includes the call.</p> <pre><code>Action a = null; a = () =&gt; a(); a(); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63873#63873 3 Answer by a1k0n for Stack overflow code golf a1k0n 2008-09-15T15:20:22Z 2008-09-15T15:20:22Z <pre><code>xor esp, esp ret </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64017#64017 1 Answer by x0n for Stack overflow code golf x0n 2008-09-15T15:36:46Z 2008-09-16T01:42:21Z <p><strong>PowerShell</strong></p> <blockquote> <p>$f={&amp;$f};&amp;$f</p> </blockquote> <p>"The script failed due to call depth overflow. The call depth reached 1001 and the maximum is 1000."</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64252#64252 146 Answer by jrudolph for Stack overflow code golf jrudolph 2008-09-15T16:05:34Z 2008-09-15T16:16:56Z <p>Read this line, and do what it says <strong>twice</strong>.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64290#64290 0 Answer by unknown (yahoo) for Stack overflow code golf unknown (yahoo) 2008-09-15T16:09:44Z 2009-06-22T18:41:05Z <p><strong>bash:</strong> Only one process</p> <pre><code>\#!/bin/bash of() { of; } of </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64331#64331 1 Answer by for Stack overflow code golf 2008-09-15T16:15:50Z 2008-09-15T16:15:50Z <p>Ruby, shorter than the other ones so far:</p> <pre><code>def a;a;end;a </code></pre> <p>(13 chars)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64346#64346 0 Answer by for Stack overflow code golf 2008-09-15T16:17:34Z 2008-09-15T16:17:34Z <p>Pretty much any shell:</p> <pre><code>sh $0 </code></pre> <p>(5 characters, only works if run from file)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64352#64352 1 Answer by tenshihan for Stack overflow code golf tenshihan 2008-09-15T16:18:11Z 2008-09-15T16:18:11Z <p>try and put more than 4 patties on a single burger. stack overflow.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64395#64395 11 Answer by broady for Stack overflow code golf broady 2008-09-15T16:24:08Z 2008-09-15T16:24:08Z <p>Groovy:</p> <pre><code>main() </code></pre> <p>$ groovy stack.groovy:</p> <pre><code>Caught: java.lang.StackOverflowError at stack.main(stack.groovy) at stack.run(stack.groovy:1) ... </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64425#64425 0 Answer by Jonas Gulle for Stack overflow code golf Jonas Gulle 2008-09-15T16:27:46Z 2008-09-15T16:27:46Z <p>Five bytes in 16-bit asm which will cause a stack overflow.</p> <pre><code>push cs push $-1 ret </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64573#64573 1 Answer by botismarius for Stack overflow code golf botismarius 2008-09-15T16:45:15Z 2008-09-15T16:45:15Z <p>In assembly language (x86 processors, 16 or 32 bit mode):</p> <pre><code> call $ </code></pre> <p>which will generate:</p> <ul> <li><p>in 32 bit mode: 0xe8;0xfb;0xff;0xff;0xff</p></li> <li><p>in 16 bit mode: 0xe8;0xfd;0xff</p></li> </ul> <p>in C/C++:</p> <pre><code> int main( ) { return main( ); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64707#64707 23 Answer by Dennis Munsie for Stack overflow code golf Dennis Munsie 2008-09-15T17:00:09Z 2008-09-15T17:00:09Z <p>Z-80 assembler -- at memory location 0x0000:</p> <pre><code>rst 00 </code></pre> <p>one byte -- 0xC7 -- endless loop of pushing the current PC to the stack and jumping to address 0x0000.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64830#64830 6 Answer by Travis Wilson for Stack overflow code golf Travis Wilson 2008-09-15T17:15:43Z 2009-06-23T20:00:59Z <p><strong>Javascript</strong></p> <p>To trim a few more characters, and to get ourselves kicked out of more software shops, let's go with:</p> <pre><code>eval(i='eval(i)'); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/65046#65046 2 Answer by mattiast for Stack overflow code golf mattiast 2008-09-15T17:45:33Z 2008-09-15T17:45:33Z <p>Haskell:</p> <pre><code>let x = x print x </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/65224#65224 2 Answer by Joshua Carmody for Stack overflow code golf Joshua Carmody 2008-09-15T18:04:05Z 2008-09-15T18:04:05Z <p>Well, nobody's mentioned Coldfusion yet, so...</p> <pre><code>&lt;cfinclude template="#ListLast(CGI.SCRIPT_NAME, "/\")#"&gt; </code></pre> <p>That oughta do it.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/65317#65317 0 Answer by Kibbee for Stack overflow code golf Kibbee 2008-09-15T18:14:29Z 2008-09-15T18:14:29Z <p>VB.Net</p> <pre><code>Function StackOverflow() As Integer Return StackOverflow() End Function </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/65628#65628 1 Answer by Joseph Bui for Stack overflow code golf Joseph Bui 2008-09-15T18:50:10Z 2008-09-15T18:50:10Z <p>TCL:</p> <pre><code>proc a {} a </code></pre> <p>I don't have a tclsh interpreter that can do tail recursion, but this might fool such a thing:</p> <pre><code>proc a {} "a;a" </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66095#66095 4 Answer by Pi for Stack overflow code golf Pi 2008-09-15T19:41:23Z 2008-09-15T20:51:12Z <p>Forth:</p> <pre><code>: a 1 recurse ; a </code></pre> <p>Inside the <code>gforth</code> interpreter:</p> <pre><code>: a 1 recurse ; a *the terminal*:1: Return stack overflow : a 1 recurse ; a ^ Backtrace: </code></pre> <p>On a Power Mac G4 at the Open Firmware prompt, this just hangs the machine. :)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66196#66196 -2 Answer by kashifrazzaqui for Stack overflow code golf kashifrazzaqui 2008-09-15T19:49:20Z 2008-09-15T19:49:20Z <p>Oops, I dunno, I haver never written code that causes a Stack Overflow ;)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66370#66370 9 Answer by disq for Stack overflow code golf disq 2008-09-15T20:03:01Z 2009-02-24T21:28:21Z <p>Another PHP Example:</p> <pre><code>&lt;? require(__FILE__); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66392#66392 0 Answer by PersistenceOfVision for Stack overflow code golf PersistenceOfVision 2008-09-15T20:05:30Z 2008-09-15T20:05:30Z <p>For Fun I had to look up the Motorolla HC11 Assembly:</p> <pre><code> org $100 Loop nop jsr Loop </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66470#66470 -1 Answer by WaldWolf for Stack overflow code golf WaldWolf 2008-09-15T20:12:25Z 2008-09-15T20:18:56Z <p><strong>Prolog</strong></p> <p>p:-p.</p> <p>= 5 characters</p> <p>then start it and query p</p> <p>i think that is quite small and runs out of stack in prolog.</p> <p>a query of just a variable in swi prolog produces:</p> <p>?- X. % ... 1,000,000 ............ 10,000,000 years later % % >> 42 &lt;&lt; (last release gives the question)</p> <p>and here is another bash fork bomb: :(){ :|:&amp; };:</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66483#66483 2 Answer by stu for Stack overflow code golf stu 2008-09-15T20:14:02Z 2009-06-22T18:42:26Z <p>as a local variable in a C function:</p> <pre><code>int x[100000000000]; </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66616#66616 0 Answer by Thevs for Stack overflow code golf Thevs 2008-09-15T20:29:03Z 2008-09-15T20:29:03Z <p>Not very short, but effective! (JavaScript)</p> <pre><code>setTimeout(1, function() {while(1) a=1;}); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66663#66663 2 Answer by Jay Bazuzi for Stack overflow code golf Jay Bazuzi 2008-09-15T20:34:01Z 2008-09-15T20:34:01Z <p><strong>C#</strong> </p> <pre><code>class _{static void Main(){Main();}} </code></pre> <p>Note that mine is a compilable program, not just a single function. I also removed excess whitespace.</p> <p>For flair, I made the class name as small as I could.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66744#66744 119 Answer by Patrick for Stack overflow code golf Patrick 2008-09-15T20:43:25Z 2008-09-16T21:18:07Z <p>All these answers and no Befunge? I'd wager a fair amount it's shortest solution of them all:</p> <pre><code>1 </code></pre> <p>Not kidding. Try it yourself: <a href="http://www.quirkster.com/js/befunge.html" rel="nofollow">http://www.quirkster.com/js/befunge.html</a></p> <p>EDIT: I guess I need to explain this one. The 1 operand pushes a 1 onto Befunge's internal stack and the lack of anything else puts it in a loop under the rules of the language. </p> <p>Using the interpreter provided, you will eventually--and I mean <i>eventually</i>--hit a point where the Javascript array that represents the Befunge stack becomes too large for the browser to reallocate. If you had a simple Befunge interpreter with a smaller and bounded stack--as is the case with most of the languages below--this program would cause a more noticeable overflow faster.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/67634#67634 1 Answer by clahey for Stack overflow code golf clahey 2008-09-15T22:31:08Z 2008-09-15T22:40:34Z <p>Unless there's a language where the empty program causes a stack overflow, the following should be the shortest possible.</p> <p>Befunge:</p> <pre><code>: </code></pre> <p>Duplicates the top stack value over and over again.</p> <p>edit: Patrick's is better. Filling the stack with 1s is better than filling the stack with 0s, since the interpreter could optimize pushing 0s onto an empty stack as a no-op.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/67749#67749 0 Answer by Despatcher for Stack overflow code golf Despatcher 2008-09-15T22:53:01Z 2008-09-15T22:53:01Z <p>I think it's cheating I've never played before ;) but here goes</p> <p>8086 assembler:</p> <p>org Int3VectorAdrress ;is that cheating? </p> <p>int 3</p> <p>1 byte - or 5 characters that generate code, what say you? </p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68055#68055 1 Answer by jp-larocque for Stack overflow code golf jp-larocque 2008-09-15T23:54:33Z 2008-09-15T23:54:33Z <p>If you consider a call frame to be a process, and the stack to be your Unix machine, you could consider a fork bomb to be a <em>parallel</em> program to create a stack overflow condition. Try this 13-character bash number. No saving to a file is necessary.</p> <pre><code>:(){ :|:&amp; };: </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68229#68229 0 Answer by RFelix for Stack overflow code golf RFelix 2008-09-16T00:25:46Z 2008-09-16T00:25:46Z <p>Ruby, albeit not that short:</p> <pre><code>class Overflow def initialize Overflow.new end end Overflow.new </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68442#68442 20 Answer by Pi for Stack overflow code golf Pi 2008-09-16T01:10:21Z 2008-09-16T01:10:21Z <p>TeX:</p> <pre><code>\def\a{\a.}\a </code></pre> <p>Results in:</p> <pre>! TeX capacity exceeded, sorry [input stack size=5000]. \a ->\a . \a ->\a . \a ->\a . \a ->\a . \a ->\a . \a ->\a . ... \a </pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68521#68521 0 Answer by Daniel Spiewak for Stack overflow code golf Daniel Spiewak 2008-09-16T01:24:17Z 2008-09-16T01:24:17Z <p>I think this will work in Java (untried):</p> <pre><code>enum A{B.values()} enum B{A.values()} </code></pre> <p>Should overflow in static initialization before it even gets the chance to fail due to a lack of main(String[]).</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68586#68586 1 Answer by paul.richardson for Stack overflow code golf paul.richardson 2008-09-16T01:35:33Z 2008-09-16T01:50:33Z <p>won't be the shortest but I had to try something... C#</p> <p>string[] f = new string[0]; Main(f);</p> <p>bit shorter</p> <pre><code>static void Main(){Main();} </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68960#68960 10 Answer by Ryan Fox for Stack overflow code golf Ryan Fox 2008-09-16T02:38:59Z 2008-09-16T02:38:59Z <pre><code>Person JeffAtwood; Person JoelSpolsky; JeffAtwood.TalkTo(JoelSpolsky); </code></pre> <p>Here's hoping for no tail recursion!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/69003#69003 9 Answer by Blinky for Stack overflow code golf Blinky 2008-09-16T02:48:14Z 2008-09-16T02:48:14Z <p>Using a Window's batch file named "s.bat":</p> <pre><code>call s </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/69369#69369 0 Answer by naveen.kumar.bangalore for Stack overflow code golf naveen.kumar.bangalore 2008-09-16T04:23:22Z 2009-06-22T18:44:30Z <p>In <strong>C#</strong>, this would create a stackoverflow...</p> <pre><code>static void Main() { Main(); } </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/69577#69577 0 Answer by mike511 for Stack overflow code golf mike511 2008-09-16T05:22:41Z 2009-06-22T18:46:46Z <p>why not</p> <pre><code>mov sp,0 </code></pre> <p>(stack grows down)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/69626#69626 0 Answer by Mark Nold for Stack overflow code golf Mark Nold 2008-09-16T05:37:25Z 2008-09-16T05:37:25Z <p>In a <strong>PostScript</strong> file called so.ps will cause execstackoverflow</p> <pre><code>%!PS /increase {1 add} def 1 increase (so.ps) run </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/70176#70176 2 Answer by Wouter Coekaerts for Stack overflow code golf Wouter Coekaerts 2008-09-16T07:49:44Z 2008-09-16T07:49:44Z <p>In Irssi (terminal based IRC client, not "really" a programming language), $L means the current command line. So you can cause a stack overflow ("hit maximum recursion limit") with:</p> <pre><code>/eval $L </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/70398#70398 23 Answer by Konrad Rudolph for Stack overflow code golf Konrad Rudolph 2008-09-16T08:36:39Z 2008-09-16T08:36:39Z <p>Every task needs the right tool. Meet the <a href="http://page.mi.fu-berlin.de/krudolph/stuff/so/" rel="nofollow">SO Overflow</a> language, optimized to produce stack overflows:</p> <pre><code>so </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/70950#70950 1 Answer by RFelix for Stack overflow code golf RFelix 2008-09-16T10:14:39Z 2008-09-16T10:14:39Z <p>Here's another Ruby answer, this one uses lambdas:</p> <pre><code>(a=lambda{a.call}).call </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/71833#71833 6 Answer by Chris Jester-Young for Stack overflow code golf Chris Jester-Young 2008-09-16T12:48:03Z 2008-09-16T13:17:29Z <p>I'm selecting the “best answer” after this post. But first, I'd like to acknowledge some very original contributions:</p> <ol> <li>aku's ones. Each one explores a new and original way of causing stack overflow. The idea of doing <a href="#63061" rel="nofollow">f(x) ⇒ f(f(x))</a> is one I'll explore in my next entry, below. :-)</li> <li><a href="#62321" rel="nofollow">Cody's one</a> that gave the Nemerle <em>compiler</em> a stack overflow.</li> <li>And (a bit grudgingly), <a href="#62244" rel="nofollow">GateKiller's one</a> about throwing a stack overflow exception. :-P</li> </ol> <p>Much as I love the above, the challenge is about doing code golf, and to be fair to respondents, I have to award “best answer” to the shortest code, which is the <a href="#66744" rel="nofollow">Befunge entry</a>; I don't believe anybody will be able to beat that (although <a href="#70398" rel="nofollow">Konrad has certainly tried</a>), so congrats Patrick!</p> <p>Seeing the large number of stack-overflow-by-recursion solutions, I'm surprised that nobody has (as of current writing) brought up the Y combinator (see Dick Gabriel's essay, <a href="http://www.dreamsongs.com/Files/WhyOfY.pdf" rel="nofollow">The Why of Y</a>, for a primer). I have a recursive solution that uses the Y combinator, as well as aku's f(f(x)) approach. :-)</p> <pre><code>((Y (lambda (f) (lambda (x) (f (f x))))) #f) </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/71964#71964 1 Answer by Leo Lännenmäki for Stack overflow code golf Leo Lännenmäki 2008-09-16T13:04:43Z 2008-09-16T13:04:43Z <p>Another one in <strong>JavaScript</strong>:</p> <pre><code>(new function() { arguments.callee();}); </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/72993#72993 1 Answer by Javier for Stack overflow code golf Javier 2008-09-16T14:35:11Z 2008-09-16T14:35:11Z <p>Vb6</p> <pre><code> Public Property Let x(ByVal y As Long) x = y End Property Private Sub Class_Initialize() x = 0 End Sub </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/75948#75948 1 Answer by squadette for Stack overflow code golf squadette 2008-09-16T19:21:20Z 2008-09-16T19:21:20Z <p>Short solution in K&amp;R C, could be compiled:</p> <pre><code>main(){main()} </code></pre> <p>14 bytes</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/75991#75991 5 Answer by Adam Rosenfield for Stack overflow code golf Adam Rosenfield 2008-09-16T19:26:26Z 2008-09-16T19:26:26Z <p>Here's another interesting one from Scheme:</p> <pre>((lambda (x) (x x)) (lambda (x) (x x)))</pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/76923#76923 0 Answer by Ramin for Stack overflow code golf Ramin 2008-09-16T20:51:19Z 2008-09-16T20:51:19Z <p><a href="http://www.google.com/search?q=google.com" rel="nofollow">http://www.google.com/search?q=google.com</a></p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/78084#78084 0 Answer by defmeta for Stack overflow code golf defmeta 2008-09-16T22:46:41Z 2008-09-16T23:12:00Z <p>Actionscript 3: All done with arrays...</p> <pre><code>var i=[]; i[i.push(i)]=i; trace(i); </code></pre> <p>Maybe not the smallest but I think it's cute. Especially the push method returning the new array length!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/78911#78911 0 Answer by Luke Sandberg for Stack overflow code golf Luke Sandberg 2008-09-17T01:24:24Z 2009-06-22T18:45:33Z <p>In response to the Y combinator comment, i might as well through in the Y-combinator in the SKI calculus:</p> <pre><code>S (K (S I I)) (S (S (K S) K) (K (S I I))) </code></pre> <p>There aren't any SKI interpreters that i know of but i once wrote a graphical one in about an hour in actionscript. I would be willing to post if there is interest (though i never got the layout working very efficiently)</p> <p>read all about it here: <a href="http://en.wikipedia.org/wiki/SKI_combinator_calculus" rel="nofollow">http://en.wikipedia.org/wiki/SKI_combinator_calculus</a></p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/79016#79016 0 Answer by Dennis Ferron for Stack overflow code golf Dennis Ferron 2008-09-17T01:42:04Z 2008-09-17T01:42:04Z <p>In x86 assembly, place a divide by 0 instruction at the location in memory of the interrupt handler for divide by 0!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/80350#80350 2 Answer by matyr for Stack overflow code golf matyr 2008-09-17T05:45:16Z 2008-09-17T05:45:16Z <p>Groovy (5B):</p> <pre><code>run() </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/90506#90506 0 Answer by dsm for Stack overflow code golf dsm 2008-09-18T06:31:11Z 2008-09-18T09:52:17Z <p>in perl:</p> <pre><code>`$0` </code></pre> <p>As a matter of fact, this will work with any shell that supports the backquote-command syntax and stores its own name in <code>$0</code></p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/90986#90986 1 Answer by Aardappel for Stack overflow code golf Aardappel 2008-09-18T08:41:28Z 2008-09-18T08:41:28Z <p>False:</p> <p>[1][1]#</p> <p>(False is a stack language: # is a while loop that takes 2 closures, a conditional and a body. The body is the one that causes the overflow).</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/570789#570789 0 Answer by Pablo for Stack overflow code golf Pablo 2009-02-20T18:49:01Z 2009-06-22T18:43:34Z <p>CMD overflow in one line</p> <pre><code>echo @call b.cmd &gt; b.cmd &amp; b </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/583659#583659 0 Answer by Kaarel for Stack overflow code golf Kaarel 2009-02-24T21:21:54Z 2009-02-24T21:21:54Z <p><strong>Prolog</strong></p> <p>This program crashes both SWI-Prolog and Sicstus Prolog when consulted.</p> <pre><code>p :- p, q. :- p. </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/597337#597337 -3 Answer by Oscar Cabrero for Stack overflow code golf Oscar Cabrero 2009-02-28T01:52:41Z 2009-06-22T18:43:01Z <pre><code>Redmond.Microsoft.Core.Windows.Start() </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/597372#597372 32 Answer by Adam Davis for Stack overflow code golf Adam Davis 2009-02-28T02:17:01Z 2009-08-24T14:52:01Z <h2>PIC18</h2> <p>The <a href="http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62209#62209">PIC18 answer given by TK</a> results in the following instructions (binary):</p> <pre><code>overflow PUSH 0000 0000 0000 0101 CALL overflow 1110 1100 0000 0000 0000 0000 0000 0000 </code></pre> <p>However, CALL alone will perform a stack overflow:</p> <pre><code>CALL $ 1110 1100 0000 0000 0000 0000 0000 0000 </code></pre> <h2>Smaller, faster PIC18</h2> <p>But RCALL (relative call) is smaller still (not global memory, so no need for the extra 2 bytes):</p> <pre><code>RCALL $ 1101 1000 0000 0000 </code></pre> <p>So the smallest on the PIC18 is a single instruction, 16 bits (two bytes). This would take 2 instruction cycles per loop. At 4 clock cycles per instruction cycle you've got 8 clock cycles. The PIC18 has a 31 level stack, so after the 32nd loop it will overflow the stack, in 256 clock cycles. At 64MHz, you would <strong>overflow the stack in 4 micro seconds and 2 bytes</strong>.</p> <h2>PIC16F5x (even smaller and faster)</h2> <p>However, the PIC16F5x series uses 12 bit instructions:</p> <pre><code>CALL $ 1001 0000 0000 </code></pre> <p>Again, two instruction cycles per loop, 4 clocks per instruction so 8 clock cycles per loop.</p> <p>However, the PIC16F5x has a two level stack, so on the third loop it would overflow, in 24 instructions. At 20MHz, it would <strong>overflow in 1.2 micro seconds and 1.5 bytes</strong>.</p> <h2>Intel 4004</h2> <p>The <a href="http://download.intel.com/museum/archives/pdf/4004%5Fdatasheet.pdf" rel="nofollow">Intel 4004</a> has an 8 bit call subroutine instruction:</p> <pre><code>CALL $ 0101 0000 </code></pre> <p>For the curious that corresponds to an ascii 'P'. With a 3 level stack that takes 24 clock cycles for a total of <strong>32.4 micro seconds and one byte</strong>. (Unless you overclock your 4004 - come on, you know you want to.)</p> <p>Which is as small as the befunge answer, but much, much faster than the befunge code running in current interpreters.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/597461#597461 0 Answer by Svante for Stack overflow code golf Svante 2009-02-28T03:49:54Z 2009-02-28T03:49:54Z <p>Tail call optimization can be sabotaged by not tail calling. In Common Lisp:</p> <pre>(defun f () (1+ (f)))</pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/605938#605938 0 Answer by Jonas Kölker for Stack overflow code golf Jonas Kölker 2009-03-03T10:55:26Z 2009-03-03T10:55:26Z <p>In Haskell</p> <pre><code>fix (1+) </code></pre> <p>This tries to find the fix point of the (1+) function (<code>λ n → n + 1</code>) . The implementation of fix is</p> <pre><code>fix f = (let x = f(x) in x) </code></pre> <p>So</p> <pre><code>fix (1+) </code></pre> <p>becomes</p> <pre><code>(1+) ((1+) ((1+) ...)) </code></pre> <p>Note that</p> <pre><code>fix (+1) </code></pre> <p>just loops.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/779109#779109 0 Answer by BCS for Stack overflow code golf BCS 2009-04-22T20:36:09Z 2009-04-22T20:36:09Z <p>Meta problem in D:</p> <pre><code>class C(int i) { C!(i+1) c; } C!(1) c; </code></pre> <p>compile time stack overflow</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/848505#848505 0 Answer by Tolgahan Albayrak for Stack overflow code golf Tolgahan Albayrak 2009-05-11T14:55:15Z 2009-05-11T14:55:15Z <pre><code>_asm t: call t; </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/973947#973947 0 Answer by RCIX for Stack overflow code golf RCIX 2009-06-10T06:16:37Z 2009-06-10T06:16:37Z <p><strong>A better lua solution:</strong></p> <pre><code>function c()c()end; </code></pre> <p>Stick this into SciTE or an interactive command prompt and then call it. Boom!</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/1028904#1028904 2 Answer by Greg for Stack overflow code golf Greg 2009-06-22T19:09:50Z 2009-06-22T19:09:50Z <p>Please tell me what the acronym "<a href="http://en.wikipedia.org/wiki/GNU" rel="nofollow">GNU</a>" stands for.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/1735693#1735693 0 Answer by Graphics Noob for Stack overflow code golf Graphics Noob 2009-11-14T21:34:39Z 2009-11-15T15:41:04Z <p>OCaml</p> <pre><code>let rec f l = f l@l;; </code></pre> <p>This one is a little different. There's only one stack frame on the stack (since it's tail recursive), but it's input keeps growing until it overflows the stack. Just call <code>f</code> with a non empty list like so (at the interpreter prompt):</p> <pre><code># f [0];; Stack overflow during evaluation (looping recursion?). </code></pre> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/1738894#1738894 0 Answer by Graphics Noob for Stack overflow code golf Graphics Noob 2009-11-15T21:26:32Z 2009-11-15T21:26:32Z <p>Even though it doesn't really have a stack...</p> <p><strong>brainf*ck 5 char</strong></p> <pre><code>+[&gt;+] </code></pre>