Skip to content

Instantly share code, notes, and snippets.

@yonta
Last active June 12, 2019 15:45
Show Gist options
  • Save yonta/2c5f0dd807d8934bca4f797281250095 to your computer and use it in GitHub Desktop.
Save yonta/2c5f0dd807d8934bca4f797281250095 to your computer and use it in GitHub Desktop.
let-if
(let* ((a (...))
(a (if cond a (f a)))
(a (...)))
g a)
let
a = ...
a = if cond then a else f a
a = ...
in
g a
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment