exercism / exercism/nim-representer

Normalization of call kinds

Open
#4 5 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.