`($x)` matches `(a b)`
Created by: copy
Consider this example:
macro bof {
case ($x) => {
$x
}
}
bof (5 6);
It results in 5
.
Created by: copy
Consider this example:
macro bof {
case ($x) => {
$x
}
}
bof (5 6);
It results in 5
.