Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maksasj/hypnode

πŸŒ€ experimental programming language based on asynchronous node architecture
https://github.com/maksasj/hypnode

compiler daemon experimental language node runtime

Last synced: about 6 hours ago
JSON representation

πŸŒ€ experimental programming language based on asynchronous node architecture

Awesome Lists containing this project

README

        

# hypnode πŸŒ€

node based programming language

## BNF (Backus–Naur form)
```bnf
::= ( | )*

::= "="
::= "type"
::= "{" ( )* "}" |
::= ":" ";"

::= "="
::= "node"
::= "{" ( )* "}"
::= | |
::= ("input" | "output") ":" ";"
::= "let" ":" ";"

::= "<-" ";"
::= ("." )*

::= |
::= "i64" | "i32" | "i16" | "i8" | "u64" | "u32" | "u16" | "u8" | "string" | "f32" | "f64" | "bool"

::= *
::= *
::= *

::= |
::= |
::= "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z"
::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z"
::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
```

## License

hypnode is free, open source programming language. All code in this repository is licensed under

- MIT License ([LICENSE.md](https://github.com/Maksasj/hypnode/blob/master/LICENSE.md) or https://opensource.org/license/mit/)