Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/maksasj/hypnode
- Owner: Maksasj
- License: mit
- Created: 2024-06-06T18:42:37.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-11-03T14:07:44.000Z (16 days ago)
- Last Synced: 2024-11-03T15:18:38.476Z (16 days ago)
- Topics: compiler, daemon, experimental, language, node, runtime
- Language: C
- Homepage:
- Size: 644 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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/)