diff options
Diffstat (limited to 'js/scripting-lang/repl/README.md')
-rw-r--r-- | js/scripting-lang/repl/README.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/scripting-lang/repl/README.md b/js/scripting-lang/repl/README.md index b4e3714..fa7b846 100644 --- a/js/scripting-lang/repl/README.md +++ b/js/scripting-lang/repl/README.md @@ -18,8 +18,8 @@ This REPL serves as a **comprehensive demo** of how to leverage the scripting-ha ``` ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ -│ Model │ │ Update │ │ Commands │ -│ (Pure State) │───▶│ (Pure Script) │───▶│ (..emit) │ +│ Model │ │ Update │ │ Commands │ +│ (Pure State) │───▶│ (Pure Script) │───▶│ (..emit) │ └─────────────────┘ └─────────────────┘ └─────────────────┘ │ │ │ │ │ ▼ @@ -30,8 +30,8 @@ This REPL serves as a **comprehensive demo** of how to leverage the scripting-ha │ │ ▼ ▼ ┌─────────────────┐ ┌─────────────────┐ -│ ..listen │ │ New State │ -│ (State Access) │ │ (Returned) │ +│ ..listen │ │ New State │ +│ (State Access) │ │ (Returned) │ └─────────────────┘ └─────────────────┘ ``` @@ -251,7 +251,7 @@ Pure function transforms state. ### 3. Commands (Side Effects) ```bash -📤 Processing 1 command(s)... +Processing 1 command(s)... → emit: {"action":"counter_updated","count":2} [Console Adapter] { action: "counter_updated", count: 2 } ``` @@ -265,7 +265,7 @@ Commands: 1 ``` New state is returned and displayed. -## 🎯 Learning Objectives +## Learning Objectives This REPL demonstrates: @@ -356,4 +356,4 @@ This creates a powerful demonstration of how the scripting-harness architecture **Primary Purpose**: Educational demonstration of functional state management patterns and adapter architecture. -**Production Readiness**: The core architecture is sound, but requires resolution of the harness initialization issue for full functionality. \ No newline at end of file +**Production Readiness**: The core architecture is sound, but requires resolution of the harness initialization issue for full functionality. |