P
Paul Bergstrom
Is there a better way to write this?
@a = "abc"
@a = @b if @b
This will set value @a to @b if @b already have a value since before. If
not it will use the default @a which is "abc".
@a = "abc"
@a = @b if @b
This will set value @a to @b if @b already have a value since before. If
not it will use the default @a which is "abc".