Skip to content

Instantly share code, notes, and snippets.

@tkelman
Created January 6, 2015 11:51
Show Gist options
  • Select an option

  • Save tkelman/9a547c6a158ff1097f3d to your computer and use it in GitHub Desktop.

Select an option

Save tkelman/9a547c6a158ff1097f3d to your computer and use it in GitHub Desktop.
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