From acdb47fd342fee5f9125ce4226f1717755523ae6 Mon Sep 17 00:00:00 2001 From: Luxferre Date: Fri, 3 Jul 2026 10:38:04 +0300 Subject: [PATCH] updated readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b8da4cf..56c82a8 100644 --- a/README.md +++ b/README.md @@ -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. +The core spec of Clyx is mostly stable but the standard library is still a work-in-progress. + ## Language features - 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 +For the easiest way to install the reference Python-based Clyx implementation, [pipx](https://pipx.pypa.io/stable/) is recommended: + ```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.