Originally, I used C# for scripting too. But i wanted to make my own language as a challenge. I don't want it to be weird but to have some useful unusual features - for example, it has loop counters, like
```
foreach x in y : counter c
{
println("index: " + c + ", item: " + x)
}
```