Recently I was always thinking about a language that is elegant, efficient and easy for maintaining. I even began to plan my own language: it could look like Python but only space is allowed; it shall be statically typed... Until I found Nim, my dreaming language.
So I do not care how many people are using it. I'd like to contribute just because I love it.
As a beginner I am not sure if my question found in tutorial is correct or not. Correct me if I made a mistake. In tutorial I "Parameters" part, the second sample code is like this.
echo(x)
echo(y)
while I think it should be like this if echo() is not overloaded.
echo($x)
echo($y)