exercism / exercism/nim-representer
Normalization of call kinds
Open
discussion
- Dominant language
- Nim
- Stars
- 5
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
As of now, the proposed representation for Nim proc/func/template/macro calls is to normalize them all to regular calls. For example:
```nim
`+` 1, 2 => `+`(1, 2)
1 + 2 => `+`(1, 2)
-1 => `-`(1)
```
Is this the desired result?
Certain call styles are more idiomatic
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.