in reply to Report: Migrating from perl to Java
Just for fun. I suspect this is an underestimate and does not include the hardware upgrades that seem to come with Java. A lot of these "success stories" look like pork and Chinese firedrills when viewed from inside a company instead of from reading the PR releases.
my $full_time_devs = 20; # Guess my $annual_work_hours = 1800; # Guess my $hourly_us = 40; # *Total* guess my $years = 2; printf("\$%s\n", commify( $full_time_devs * $hourly_us * $annual_work_hours * $years ) ); sub commify { my $text = reverse $_[0]; $text =~ s/(\d\d\d)(?=\d)(?!\d*\.)/$1,/g; return scalar reverse $text; } __END__ $2,880,000
|
|---|