in reply to Re^2: Refactoring: Better Variable Names For Better Understanding? [SOLVED]
in thread Refactoring: Better Variable Names For Better Understanding? [SOLVED]

You might want to take a look at the versions on the Language Shootout.

  • Comment on Re^3: Refactoring: Better Variable Names For Better Understanding? [SOLVED]

Replies are listed 'Best First'.
Re^4: Refactoring: Better Variable Names For Better Understanding? [SOLVED]
by marioroy (Prior) on Jun 07, 2015 at 20:07 UTC

    The solution is posted here including MCE + Inline::C demonstration.

    $ time perl mandelbrot1.pl 16000 > m1.pbm real 8m38.383s ( Perl code by Mykola Zubach, threads only ) $ time perl mandelbrot2.pl 16000 > m2.pbm real 3m52.245s ( MCE supporting threads and processes ) $ time perl mandelbrot3.pl 16000 > m3.pbm real 1.974s ( MCE + Inline::C, mind boggling )

    Kind regards, Mario