With
The with
statement behaves almost like the if
statement, but instead of testing for trueness, it checks to see if the given argument is not a nil
value.
Same as the if
statement, it supports capturing of a defined value in a block variable:
Last updated