Skip to main content

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

Nice. You know you could have used an already established and simple language, like Postscript. Have you thought about making the language a little bit weird?

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)

}

```