Skip to main content
Post Made Community Wiki
Source Link
Gaurav
  • 567
  • 5
  • 14

Perl

  1. I wish Perl let me write if($x < 10) do_something();. At the moment, you have to write that as either do_something() if($x < 10); or as if($x < 10) { do_something(); }.