An open API service indexing awesome lists of open source software.

https://github.com/mountain/zu-lang

An experimental toy language
https://github.com/mountain/zu-lang

Last synced: 11 months ago
JSON representation

An experimental toy language

Awesome Lists containing this project

README

          

==Basic syntax==

pair (:)
seperator (,)
interval (..)
encapsulator (,,,), [,,,], {,,,}
decapsulator ~(), ~[], ~{}
comprehension (|,,,),[|,,,], {|,,,}
block {||;;;;}
binding x := v
iteration x <- list

==List==

List are values sperated by comma

==Tuple==

fix-sized list, encapsulated by (,,,)

==Array==

dynamic list, encapsulated by [,,,]

==Map==

dynamic pair list, encapsulated by {,,,}