Skip to content

Instantly share code, notes, and snippets.

@nedzadarek
Created January 25, 2019 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nedzadarek/91014c8d2514bf77940d0ff2db82713a to your computer and use it in GitHub Desktop.
Save nedzadarek/91014c8d2514bf77940d0ff2db82713a to your computer and use it in GitHub Desktop.
||=: make op! func ['a b] [either value? a [return get a] [set a b return b]]
a: 4
a ||= 3
; == 4
c ;*** Script Error: c has no value
c ||= 42
; == 42
c
; == 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment