- vik1984 blogja
- A hozzászóláshoz be kell jelentkezni
- 727 megtekintés
Hozzászólások
idióta:)
- A hozzászóláshoz be kell jelentkezni
Azt hittem, hogy stack overflow lesz, mint a tobbinel :)
"No boom today. Boom tomorrow. There's always a boom tomorrow. What? Look, somebody's got to have some damn perspective around here. Boom, sooner or later. BOOM!" -- Lt. Cmd. Ivanova
- A hozzászóláshoz be kell jelentkezni
milyen nyelven próbáltad még?
c/c++ szintén segfaultol, pythonban 1000-es rekurziólimit van :)
- A hozzászóláshoz be kell jelentkezni
Lua megfagy "function (x) return f(x); end(1)"-el (nő a stack, mint a gomba)
C: Szegmens hiba "int main(int argc) { return main(argc); }"
Python: "RuntimeError: maximum recursion depth exceeded"
def rep(x):
return rep(x)
rep(1)
Perl: Nem áll le.
sub x {
return x(@_);
}
x(1);
"No boom today. Boom tomorrow. There's always a boom tomorrow. What? Look, somebody's got to have some damn perspective around here. Boom, sooner or later. BOOM!" -- Lt. Cmd. Ivanova
- A hozzászóláshoz be kell jelentkezni