RosettaCodeData/Task/Inverted-syntax/Latitude/inverted-syntax-2.latitude

15 lines
230 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#'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).