Skip to content

Instantly share code, notes, and snippets.

View edwinb-ai's full-sized avatar
:shipit:
Working out some ideas

Edwin Bedolla edwinb-ai

:shipit:
Working out some ideas
  • Utrecht, Netherlands
View GitHub Profile
@MikeInnes
MikeInnes / startup.jl
Last active April 28, 2025 14:51
Some useful macros for Julia
# Repeat an operation n times, e.g.
# @dotimes 100 println("hi")
macro dotimes(n, body)
quote
for i = 1:$(esc(n))
$(esc(body))
end
end
end