Created
January 6, 2015 11:51
-
-
Save tkelman/9a547c6a158ff1097f3d 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
| julia> dump(:(a > 5 && b < 10)) | |
| Expr | |
| head: Symbol && | |
| args: Array(Any,(2,)) | |
| 1: Expr | |
| head: Symbol comparison | |
| args: Array(Any,(3,)) | |
| 1: Symbol a | |
| 2: Symbol > | |
| 3: Int64 5 | |
| typ: Any | |
| 2: Expr | |
| head: Symbol comparison | |
| args: Array(Any,(3,)) | |
| 1: Symbol b | |
| 2: Symbol < | |
| 3: Int64 10 | |
| typ: Any | |
| typ: Any | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment