The compilers

Let’s see if we can crash some compilers.

python3 -c "print('{' * 99999)" > test.c && clang test.c

Clang SEGFAULT but GCC has made it :)

python3 -c "print('*' * 999999)" > test.c && clang/gcc test.c

Both Clang and GCC will SEFGAULT

Many more operators are killing Clang - GCC Just fails here

python3 -c "print('{' * 999999999)" > test && nodejs ./test

Kills nodejs.

python3 -c "print('<--' * 999999999)" > test && php ./test

and PHP is dead.

GO and Haskell won’t die but will kill your machine.

Ruby for some good reason is able to survive.

Java is nice because it fails for no main class :)

What it means?

Nothing for now - just parsers gone wild.