Hi everybody, this is the JPlus development team.
The point we would like to discuss is whether to support Default Values.
Option A: Named Parameter only
- Pros: Simpler syntax, minimal implementation and learning overhead
- Cons: Call sites may become longer in some situations
Option B: Named Parameter + Default Value
- Pros: More concise code, allows omitting some arguments when calling
- Cons: Can make code slightly harder to read if too many defaults are used
We would like to gather opinions on whether default values are truly necessary in practical coding scenarios.


