updated readme

This commit is contained in:
Luxferre
2026-07-03 10:38:04 +03:00
parent a4b20e8035
commit acdb47fd34
+5 -1
View File
@@ -6,6 +6,8 @@ Clyx (pronouned like _clicks_) is a concatenative, stack-oriented, interpreted p
Clyx aims for maximum portability and can be implemented in any modern runtime environment that supports data structures defined in JSON (numbers, strings, lists and key-value dictionaries). Extra features varying in portability include filesystem support and TCP socket I/O. Clyx aims for maximum portability and can be implemented in any modern runtime environment that supports data structures defined in JSON (numbers, strings, lists and key-value dictionaries). Extra features varying in portability include filesystem support and TCP socket I/O.
The core spec of Clyx is mostly stable but the standard library is still a work-in-progress.
## Language features ## Language features
- Single, unbounded data stack that can hold numbers, strings and quotations (lists) - Single, unbounded data stack that can hold numbers, strings and quotations (lists)
@@ -25,8 +27,10 @@ Depending on the implementation, there are several installation ways.
### Reference Python (CPython) implementation installation ### Reference Python (CPython) implementation installation
For the easiest way to install the reference Python-based Clyx implementation, [pipx](https://pipx.pypa.io/stable/) is recommended:
```sh ```sh
pip install "git+https://codeberg.org/luxferre/clyx.git#subdirectory=clyx-python" pipx install "git+https://codeberg.org/luxferre/clyx.git#subdirectory=clyx-python"
``` ```
This will install the REPL as `clyx` into your current environment. This will install the REPL as `clyx` into your current environment.