Skip to content

Instantly share code, notes, and snippets.

" Copyright (C) Brenton Horne 2016-2018
" Maintainer : Brenton Horne <brentonhorne77@gmail.com>
"
set nocompatible " be iMproved
filetype plugin on " required!
" Vundle
set runtimepath+=~/.vim_runtime
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
@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