Updated README

This commit is contained in:
Mattia Giambirtone 2022-05-20 16:15:17 +02:00
parent 2a3e05d6b3
commit ef5f00b69a
1 changed files with 9 additions and 7 deletions

View File

@ -31,10 +31,12 @@ Peon is a simple, functional, async-first programming language with a focus on c
## Disclaimer about the project's state
The project is still in its very early days: lots of stuff is not implemented, a work in progress or
otherwise outright broken. Feel free to report bugs! Also, yes: peon is yet another programming language
inspired by Bob's book, but it is also **very** different from Lox, which is an object-oriented, dynamically typed
and very high level programming language. Peon is a statically-typed, functional language which aims to
allow low-level interfacing with C and Nim code while being a breeze to use. Also, peon will feature
[structured concurrency](https://vorpus.org/blog/notes-on-structured-concurrency-or-go-statement-considered-harmful/)
with coroutines (think Futures/Fibers but without callback hell). Since, unlike Lox, peon isn't a toy language, there's
obviously plans to implement creature comforts like an import system, exception handling package manager, etc.
otherwise outright broken. Feel free to report bugs!
Also, yes: peon is yet another programming language inspired by Bob's book, but it is also **very**
different from Lox, which is an object-oriented, dynamically typed and very high level programming language.
Peon is a statically-typed, functional language which aims to allow low-level interfacing with C and Nim code while
being a breeze to use. Also, peon will feature [structured concurrency](https://vorpus.org/blog/notes-on-structured-concurrency-or-go-statement-considered-harmful/) with coroutines (think Futures/Fibers but without
callback hell). Since, unlike Lox, peon isn't a toy language, there's obviously plans to implement creature comforts
like an import system, exception handling package manager, etc.