Created
January 30, 2016 00:23
-
-
Save ityonemo/b615589641fac2ec5667 to your computer and use it in GitHub Desktop.
Println debugging in julia
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
| @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