The compilers
Let’s see if we can crash some compilers.
python3 -c "print('{' * 99999)" > test.c && clang test.cClang SEGFAULT but GCC has made it :)
python3 -c "print('*' * 999999)" > test.c && clang/gcc test.cBoth Clang and GCC will SEFGAULT
Many more operators are killing Clang - GCC Just fails here
python3 -c "print('{' * 999999999)" > test && nodejs ./testKills nodejs.
python3 -c "print('<--' * 999999999)" > test && php ./testand 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.