Stack overflow code golf - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T00:43:56Zhttp://stackoverflow.com/feeds/question/62188http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62188/stack-overflow-code-golf62Stack overflow code golfChris Jester-Young2008-09-15T11:17:38Z2009-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#6218985Answer by Chris Jester-Young for Stack overflow code golfChris Jester-Young2008-09-15T11:17:47Z2008-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#621910Answer by Niyaz for Stack overflow code golfNiyaz2008-09-15T11:20:22Z2008-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#6219547Answer by aku for Stack overflow code golfaku2008-09-15T11:21:28Z2009-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#622058Answer by Cody Brocious for Stack overflow code golfCody Brocious2008-09-15T11:30:43Z2009-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#622091Answer by TK for Stack overflow code golfTK2008-09-15T11:34:39Z2008-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#622130Answer by Agnel Kurian for Stack overflow code golfAgnel Kurian2008-09-15T11:36:13Z2008-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#622150Answer by Huppie for Stack overflow code golfHuppie2008-09-15T11:37:05Z2008-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)() = &main;
f();
}
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62217#6221720Answer by Vinko Vrsalovic for Stack overflow code golfVinko Vrsalovic2008-09-15T11:39:32Z2008-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#622211Answer by Agnel Kurian for Stack overflow code golfAgnel Kurian2008-09-15T11:42:44Z2008-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#6223113Answer by Chris Jester-Young for Stack overflow code golfChris Jester-Young2008-09-15T11:46:48Z2008-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#622330Answer by GateKiller for Stack overflow code golfGateKiller2008-09-15T11:47:37Z2008-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#622432Answer by Cody Brocious for Stack overflow code golfCody Brocious2008-09-15T11:53:11Z2008-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#62244121Answer by GateKiller for Stack overflow code golfGateKiller2008-09-15T11:53:38Z2008-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#6231818Answer by stusmith for Stack overflow code golfstusmith2008-09-15T12:24:45Z2008-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#6232176Answer by Cody Brocious for Stack overflow code golfCody Brocious2008-09-15T12:25:47Z2008-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#623233Answer by dr_bonzo for Stack overflow code golfdr_bonzo2008-09-15T12:26:09Z2008-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#6237016Answer by Chris Jester-Young for Stack overflow code golfChris Jester-Young2008-09-15T12:33:25Z2008-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 <int i>
class Overflow {
typedef typename Overflow<i + 1>::type type;
};
typedef Overflow<0>::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#623792Answer by Ozgur Ozcitak for Stack overflow code golfOzgur Ozcitak2008-09-15T12:35:03Z2008-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#623992Answer by Andrew Johnson for Stack overflow code golfAndrew Johnson2008-09-15T12:37:25Z2008-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#624021Answer by aku for Stack overflow code golfaku2008-09-15T12:37:42Z2008-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#624077Answer by asksol for Stack overflow code golfasksol2008-09-15T12:39:09Z2008-09-15T12:45:21Z<p>perl in 12 chars:</p>
<pre><code>$_=sub{&$_};&$_
</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#624121Answer by JosephStyons for Stack overflow code golfJosephStyons2008-09-15T12:40:39Z2008-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#624200Answer by Sean Cameron for Stack overflow code golfSean Cameron2008-09-15T12:41:28Z2008-09-15T12:41:28Z<p>Clarion:</p>
<pre><code>Poke(0)
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62432#624324Answer by Manrico Corazzi for Stack overflow code golfManrico Corazzi2008-09-15T12:43:04Z2008-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#624681Answer by Antti Sykäri for Stack overflow code golfAntti Sykäri2008-09-15T12:46:40Z2008-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#625680Answer by Alnitak for Stack overflow code golfAlnitak2008-09-15T12:57:10Z2008-09-15T12:57:10Z<p>I tried to do it in Erlang:</p>
<pre><code>c(N)->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#625960Answer by Leo Lännenmäki for Stack overflow code golfLeo Lännenmäki2008-09-15T13:00:13Z2008-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#626090Answer by kinjal for Stack overflow code golfkinjal2008-09-15T13:01:30Z2008-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#627331Answer by Michal for Stack overflow code golfMichal2008-09-15T13:13:58Z2008-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#627860Answer by whythehellcantivote for Stack overflow code golfwhythehellcantivote2008-09-15T13:19:41Z2008-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#628094Answer by Anders Sandvig for Stack overflow code golfAnders Sandvig2008-09-15T13:22:44Z2008-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#629170Answer by JWHEAT for Stack overflow code golfJWHEAT2008-09-15T13:35:37Z2008-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#629731Answer by shelfoo for Stack overflow code golfshelfoo2008-09-15T13:42:36Z2008-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#630201Answer by JudgeDread for Stack overflow code golfJudgeDread2008-09-15T13:47:40Z2008-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#630250Answer by bgee for Stack overflow code golfbgee2008-09-15T13:48:02Z2008-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#630611Answer by aku for Stack overflow code golfaku2008-09-15T13:51:49Z2008-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#631160Answer by jmillikan for Stack overflow code golfjmillikan2008-09-15T13:59:33Z2009-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#631370Answer by Ashley Williams for Stack overflow code golfAshley Williams2008-09-15T14:01:40Z2008-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#632694Answer by Evan DeMond for Stack overflow code golfEvan DeMond2008-09-15T14:15:07Z2008-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#632902Answer by tomdemuyt for Stack overflow code golftomdemuyt2008-09-15T14:16:38Z2008-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#633530Answer by davidnicol for Stack overflow code golfdavidnicol2008-09-15T14:21:41Z2008-09-15T14:21:41Z<p><strong>Perl</strong> in 10 chars</p>
<pre><code>sub x{&x}x
</code></pre>
<p>Eventually uses up all available memory.</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63400#634000Answer by davidnicol for Stack overflow code golfdavidnicol2008-09-15T14:27:41Z2008-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#635195Answer by Misha for Stack overflow code golfMisha2008-09-15T14:41:42Z2008-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#635292Answer by Kyle Cronin for Stack overflow code golfKyle Cronin2008-09-15T14:43:06Z2008-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#635340Answer by Antti Sykäri for Stack overflow code golfAntti Sykäri2008-09-15T14:44:00Z2008-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#636131Answer by Robert S. for Stack overflow code golfRobert S.2008-09-15T14:53:39Z2008-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#638125Answer by bk1e for Stack overflow code golfbk1e2008-09-15T15:14:11Z2008-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 <stdio.h>
#include <alloca.h>
#include <sys/resource.h>
int main(int argc, char *argv[]) {
struct rlimit rl = {0};
getrlimit(RLIMIT_STACK, &rl);
(void) alloca(rl.rlim_cur);
printf("Goodbye, world\n");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63848#638480Answer by David B for Stack overflow code golfDavid B2008-09-15T15:17:07Z2008-09-15T15:17:07Z<p>C# with 27 non-whitespace characters - includes the call.</p>
<pre><code>Action a = null;
a = () => a();
a();
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63873#638733Answer by a1k0n for Stack overflow code golfa1k0n2008-09-15T15:20:22Z2008-09-15T15:20:22Z<pre><code>xor esp, esp
ret
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/64017#640171Answer by x0n for Stack overflow code golfx0n2008-09-15T15:36:46Z2008-09-16T01:42:21Z<p><strong>PowerShell</strong></p>
<blockquote>
<p>$f={&$f};&$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#64252146Answer by jrudolph for Stack overflow code golfjrudolph2008-09-15T16:05:34Z2008-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#642900Answer by unknown (yahoo) for Stack overflow code golfunknown (yahoo)2008-09-15T16:09:44Z2009-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#643311Answer by for Stack overflow code golf2008-09-15T16:15:50Z2008-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#643460Answer by for Stack overflow code golf2008-09-15T16:17:34Z2008-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#643521Answer by tenshihan for Stack overflow code golftenshihan2008-09-15T16:18:11Z2008-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#6439511Answer by broady for Stack overflow code golfbroady2008-09-15T16:24:08Z2008-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#644250Answer by Jonas Gulle for Stack overflow code golfJonas Gulle2008-09-15T16:27:46Z2008-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#645731Answer by botismarius for Stack overflow code golfbotismarius2008-09-15T16:45:15Z2008-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#6470723Answer by Dennis Munsie for Stack overflow code golfDennis Munsie2008-09-15T17:00:09Z2008-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#648306Answer by Travis Wilson for Stack overflow code golfTravis Wilson2008-09-15T17:15:43Z2009-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#650462Answer by mattiast for Stack overflow code golfmattiast2008-09-15T17:45:33Z2008-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#652242Answer by Joshua Carmody for Stack overflow code golfJoshua Carmody2008-09-15T18:04:05Z2008-09-15T18:04:05Z<p>Well, nobody's mentioned Coldfusion yet, so...</p>
<pre><code><cfinclude template="#ListLast(CGI.SCRIPT_NAME, "/\")#">
</code></pre>
<p>That oughta do it.</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/65317#653170Answer by Kibbee for Stack overflow code golfKibbee2008-09-15T18:14:29Z2008-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#656281Answer by Joseph Bui for Stack overflow code golfJoseph Bui2008-09-15T18:50:10Z2008-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#660954Answer by Pi for Stack overflow code golfPi2008-09-15T19:41:23Z2008-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-2Answer by kashifrazzaqui for Stack overflow code golfkashifrazzaqui2008-09-15T19:49:20Z2008-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#663709Answer by disq for Stack overflow code golfdisq2008-09-15T20:03:01Z2009-02-24T21:28:21Z<p>Another PHP Example:</p>
<pre><code><?
require(__FILE__);
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66392#663920Answer by PersistenceOfVision for Stack overflow code golfPersistenceOfVision2008-09-15T20:05:30Z2008-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-1Answer by WaldWolf for Stack overflow code golfWaldWolf2008-09-15T20:12:25Z2008-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 << (last release gives the question)</p>
<p>and here is another bash fork bomb:
:(){ :|:& };:</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/66483#664832Answer by stu for Stack overflow code golfstu2008-09-15T20:14:02Z2009-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#666160Answer by Thevs for Stack overflow code golfThevs2008-09-15T20:29:03Z2008-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#666632Answer by Jay Bazuzi for Stack overflow code golfJay Bazuzi2008-09-15T20:34:01Z2008-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#66744119Answer by Patrick for Stack overflow code golfPatrick2008-09-15T20:43:25Z2008-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#676341Answer by clahey for Stack overflow code golfclahey2008-09-15T22:31:08Z2008-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#677490Answer by Despatcher for Stack overflow code golfDespatcher2008-09-15T22:53:01Z2008-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#680551Answer by jp-larocque for Stack overflow code golfjp-larocque2008-09-15T23:54:33Z2008-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>:(){ :|:& };:
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68229#682290Answer by RFelix for Stack overflow code golfRFelix2008-09-16T00:25:46Z2008-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#6844220Answer by Pi for Stack overflow code golfPi2008-09-16T01:10:21Z2008-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#685210Answer by Daniel Spiewak for Stack overflow code golfDaniel Spiewak2008-09-16T01:24:17Z2008-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#685861Answer by paul.richardson for Stack overflow code golfpaul.richardson2008-09-16T01:35:33Z2008-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#6896010Answer by Ryan Fox for Stack overflow code golfRyan Fox2008-09-16T02:38:59Z2008-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#690039Answer by Blinky for Stack overflow code golfBlinky2008-09-16T02:48:14Z2008-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#693690Answer by naveen.kumar.bangalore for Stack overflow code golfnaveen.kumar.bangalore2008-09-16T04:23:22Z2009-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#695770Answer by mike511 for Stack overflow code golfmike5112008-09-16T05:22:41Z2009-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#696260Answer by Mark Nold for Stack overflow code golfMark Nold2008-09-16T05:37:25Z2008-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#701762Answer by Wouter Coekaerts for Stack overflow code golfWouter Coekaerts2008-09-16T07:49:44Z2008-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#7039823Answer by Konrad Rudolph for Stack overflow code golfKonrad Rudolph2008-09-16T08:36:39Z2008-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#709501Answer by RFelix for Stack overflow code golfRFelix2008-09-16T10:14:39Z2008-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#718336Answer by Chris Jester-Young for Stack overflow code golfChris Jester-Young2008-09-16T12:48:03Z2008-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#719641Answer by Leo Lännenmäki for Stack overflow code golfLeo Lännenmäki2008-09-16T13:04:43Z2008-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#729931Answer by Javier for Stack overflow code golfJavier2008-09-16T14:35:11Z2008-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#759481Answer by squadette for Stack overflow code golfsquadette2008-09-16T19:21:20Z2008-09-16T19:21:20Z<p>Short solution in K&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#759915Answer by Adam Rosenfield for Stack overflow code golfAdam Rosenfield2008-09-16T19:26:26Z2008-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#769230Answer by Ramin for Stack overflow code golfRamin2008-09-16T20:51:19Z2008-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#780840Answer by defmeta for Stack overflow code golfdefmeta2008-09-16T22:46:41Z2008-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#789110Answer by Luke Sandberg for Stack overflow code golfLuke Sandberg2008-09-17T01:24:24Z2009-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#790160Answer by Dennis Ferron for Stack overflow code golfDennis Ferron2008-09-17T01:42:04Z2008-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#803502Answer by matyr for Stack overflow code golfmatyr2008-09-17T05:45:16Z2008-09-17T05:45:16Z<p>Groovy (5B):</p>
<pre><code>run()
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/90506#905060Answer by dsm for Stack overflow code golfdsm2008-09-18T06:31:11Z2008-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#909861Answer by Aardappel for Stack overflow code golfAardappel2008-09-18T08:41:28Z2008-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#5707890Answer by Pablo for Stack overflow code golfPablo2009-02-20T18:49:01Z2009-06-22T18:43:34Z<p>CMD overflow in one line</p>
<pre><code>echo @call b.cmd > b.cmd & b
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/583659#5836590Answer by Kaarel for Stack overflow code golfKaarel2009-02-24T21:21:54Z2009-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-3Answer by Oscar Cabrero for Stack overflow code golfOscar Cabrero2009-02-28T01:52:41Z2009-06-22T18:43:01Z<pre><code>Redmond.Microsoft.Core.Windows.Start()
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/597372#59737232Answer by Adam Davis for Stack overflow code golfAdam Davis2009-02-28T02:17:01Z2009-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#5974610Answer by Svante for Stack overflow code golfSvante2009-02-28T03:49:54Z2009-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#6059380Answer by Jonas Kölker for Stack overflow code golfJonas Kölker2009-03-03T10:55:26Z2009-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#7791090Answer by BCS for Stack overflow code golfBCS2009-04-22T20:36:09Z2009-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#8485050Answer by Tolgahan Albayrak for Stack overflow code golfTolgahan Albayrak2009-05-11T14:55:15Z2009-05-11T14:55:15Z<pre><code>_asm t: call t;
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/973947#9739470Answer by RCIX for Stack overflow code golfRCIX2009-06-10T06:16:37Z2009-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#10289042Answer by Greg for Stack overflow code golfGreg2009-06-22T19:09:50Z2009-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#17356930Answer by Graphics Noob for Stack overflow code golfGraphics Noob2009-11-14T21:34:39Z2009-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#17388940Answer by Graphics Noob for Stack overflow code golfGraphics Noob2009-11-15T21:26:32Z2009-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>+[>+]
</code></pre>