bumped python version, updated readme

This commit is contained in:
Luxferre
2026-07-05 17:03:08 +03:00
parent 9f3786d4ed
commit 260ad6c894
+3
View File
@@ -10,6 +10,8 @@ Clyx aims for maximum portability and can be implemented in any modern runtime e
The core spec of Clyx is mostly stable but the standard library is still a work-in-progress. The core spec of Clyx is mostly stable but the standard library is still a work-in-progress.
The most recent Clyx version is **0.3**. The version is bumped every time the language core words (aka primitives), the standard library or the REPL get updated. The primitive set is expected to be indefinitely frozen once the version number reaches 1.0.
## Language features ## Language features
- Single, unbounded data stack that can hold numbers, strings and lists (here called Q-forms) - Single, unbounded data stack that can hold numbers, strings and lists (here called Q-forms)
@@ -22,6 +24,7 @@ The core spec of Clyx is mostly stable but the standard library is still a work-
- Host language interop (may not be supported on some targets, only to be used when nothing else helps) - Host language interop (may not be supported on some targets, only to be used when nothing else helps)
- Platform-agnostic [standard library](lib.clx) - Platform-agnostic [standard library](lib.clx)
- Ability to include custom modules into the current runtime context (depends on file I/O capabilities) - Ability to include custom modules into the current runtime context (depends on file I/O capabilities)
- A simple REPL ([written in Clyx itself](clyx_repl.clx)) shipped with almost every port.
## Implementations ## Implementations