Commit 9bd81c0b authored by Massimo Costantini's avatar Massimo Costantini
Browse files

Updated comment

parent 79b3131c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ Side-effecting operations (`console.log` and `print`) remain **pure descriptions

All core abstractions (e.g., `InternalError`, `IO`, and `Maybe`) are designed to be **language-agnostic** and consistent in semantics. Business logic is also **runtime-agnostic**, as it is decoupled from specific platforms like Node.js or Python.

The code can be ported to any language that supports:
The code can be easily ported to any language that supports:
- Higher-order functions
- Asynchronous operations (e.g., `Promise<T>` in JavaScript or `Callable[[IO], Awaitable[T]]` in Python)