- or download this
do_something() if <condition>;
if (<condition>) { do_something(); }
- or download this
m[regex]
m|regex|
m/regex/
/regex/
- or download this
"string-with-expanded-$variables"
qq[string-with-expanded-$variables]
qq/string-with-expanded-$variables/
- or download this
'string-expanding-no-variables'
q[string-expanding-no-variables]
q/string-expanding-no-variables/