Skip to content

Instantly share code, notes, and snippets.

@ityonemo
Created January 30, 2016 00:23
Show Gist options
  • Select an option

  • Save ityonemo/b615589641fac2ec5667 to your computer and use it in GitHub Desktop.

Select an option

Save ityonemo/b615589641fac2ec5667 to your computer and use it in GitHub Desktop.
Println debugging in julia
@macro printlndebug
println("println")
end
#use:
function donothing()
@printlndebug
nothing
end
donothing() # ==> "println"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment