Pascal version cheats
Don't all benchmarks cheat? I mean the same code may be written in many different ways, some better some worse. What I usually see (and I don't see much, so maybe exaggerating) is that often in benchmarks people write optimized code in C or other language and literally bruteforcing the problem in Pascal eventually giving the summary that Pascal is bad, almost feels like on purpose

And if once for a lifetime Pascal code did the same thing (maybe unaware of other more efficient solutions in other languages) - it's to be frowned upon

The longer I code, the more I feel like "benchmarks" don't really mean a lot. If one needs to impress a benchmark - write in Assembly (Pascal allows that too!), you can't possibly get a higher optimization cap. But in real program scenario the performance very little depends on the language used (ok, closing eyes at Garbage Collectors) but rather on how the program is implemented. And in current world state developers usually care more about how long it would take to develop a program (which determines the cost of the program), than how efficiently it will execute - it should only be "efficient enough" to provide convenient workflow for the end users.