As of now, the proposed representation for Nim proc/func/template/macro calls is to normalize them all to regular calls. For example:
`+` 1, 2 => `+`(1, 2)
1 + 2 => `+`(1, 2)
-1 => `-`(1)
Is this the desired result?
Certain call styles are more idiomatic
As of now, the proposed representation for Nim proc/func/template/macro calls is to normalize them all to regular calls. For example:
Is this the desired result?
Certain call styles are more idiomatic