Last active
March 18, 2021 22:43
-
-
Save konfou/a95e6b680b8261ae35fa2bd27a255aa1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@do begin | |
body | |
end when condition | |
Macro emulating a do-until construct. | |
""" | |
@eval macro $(:do)(body, when::Symbol, condition) | |
quote | |
while true | |
$body | |
if $condition break; end; | |
end | |
end |> esc | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment