RosettaCodeData/Task/Inverted-syntax/Latitude/inverted-syntax-2.latitude
2023-07-01 13:44:08 -04:00

14 lines
230 B
Text

#'Method when := {
localize.
if ($1) then {
this.
} else { }.
}.
#'Method unless := {
#'self when ($1 not).
}.
;; Example usage
{ needUmbrella = True. } when (raining).
{ needUmbrella = True. } unless (raining not).