Expression Modifiers in Perl - Perl Views : 110
Tagged in : Perl
0 0
Send mail

Expression Modifiers in Perl


For if, unless, while and until there is a shortcut syntax.

(do_this) if (this_is_true)

(do_this) unless (this_is_true)

(do_this) while (this_is_true)

(do_this) until (this_is_true)
By Geethalakshmi, On - 2010-09-17



    Login to add Comments .