@shd101wyy/yo 0.0.25 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,12 +11,16 @@ Yo aims to be **Simple** and **Fast** (around 0% - 15% slower than C).
11
11
 
12
12
  ## Features
13
13
 
14
+ For the design of the language, please refer to [DESIGN.md](./docs/DESIGN.md).
15
+
16
+ Below is a non-exhaustive list of features that Yo supports:
17
+
14
18
  - First-class types.
15
19
  - Compile-time evaluation.
16
20
  - Homoiconicity and metaprogramming (**Yo** syntax is inspired by the **Lisp** S expression).
17
21
  - Closure.
18
- - [Algebraic Effects and Handlers](./docs/ALGEBRAIC_EFFECTS.md) (One-shot delimited continuation, Tail-Resumptive. Implicit parameters via `using`/`given`, effect handlers with `return`/`escape`).
19
- - [Async/await](./docs/ASYNC_AWAIT.md) (Stackless coroutine & Cooperative multi-tasking. Lazy Futures, multi-await, single-threaded concurrency via state machine transformation).
22
+ - [Algebraic Effects and Handlers](./docs/ALGEBRAIC_EFFECTS.md) (One-shot delimited continuation. Tail-Resumptive. Implicit parameters via `using`/`given`, effect handlers with `return`/`escape`).
23
+ - [Async/await](./docs/ASYNC_AWAIT.md) (Builtin `IO` effect. Stackless coroutine & Cooperative multi-tasking. Lazy Futures, multi-await, single-threaded concurrency via state machine transformation).
20
24
  - `object` type with [Non-atomic Reference Counting and Thread-Local Cycle Collection](./docs/CYCLE_COLLECTION.md).
21
25
  - [Compile-time Reference Counting with Ownership and Lifetime Analysis](./docs/COMPILE_TIME_RC_WITH_OWNERSHIP_ANALYSIS.md).
22
26
  - Thread-per-core parallelism model (see [PARALLELISM.md](./docs/PARALLELISM.md)).
@@ -25,10 +29,6 @@ Yo aims to be **Simple** and **Fast** (around 0% - 15% slower than C).
25
29
 
26
30
  <img width="855" height="368" alt="Image" src="https://github.com/user-attachments/assets/04a9050e-598b-4e02-a6c3-44863d47a4ac" />
27
31
 
28
- ## Language Design
29
-
30
- For the design of the language, please refer to [DESIGN.md](./docs/DESIGN.md).
31
-
32
32
  ## Installation
33
33
 
34
34
  The `Yo` language is currently distributed as an `npm` package: