Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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)

}

```