jsonpiler 0.9.4

a Json syntax programming language for Windows
Documentation
1
2
3
4
define(repeat_print, { str: Str; cnt: Int }, Null,
  while(cnt > 0, { print(str); cnt -= 1 })
)
repeat_print("repeat 5 times\n", 5)