Skip to content

Commit e4ebd4e

Browse files
Mark Rosstclaude
andcommitted
Docs: Highlight natural language user experience
Updated README and release notes to lead with Moop's killer feature: natural language syntax that combines Quorum's naturalism with Io's minimalism. Key messaging: - Code reads like structured English - Zero ceremony, zero syntactic noise - Clean, minimal, expressive Example syntax now prominently featured: actor UserManager role is "handles user authentication" state has logged_in is false This is the unmatched differentiation that makes Moop special. Users experience elegant computation through natural language. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 33cca1f commit e4ebd4e

File tree

2 files changed

+45
-4
lines changed

2 files changed

+45
-4
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
# Unified Moop
22

3-
**A minimal, elegant implementation of evolutionary tape-loop Turing machine with actor-proto duality**
3+
**Code that reads like structured English • Quorum's naturalism + Io's minimalism**
44

55
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
66

7+
## The Moop Experience
8+
9+
Write clean, natural code:
10+
11+
```moop
12+
actor UserManager
13+
role is "handles user authentication and sessions"
14+
state has
15+
logged_in is false
16+
17+
proto DatabaseConnection <- Object
18+
slots: host, port, timeout
19+
```
20+
21+
**No ceremony. No syntactic noise. Just clear computation.**
22+
723
## Overview
824

9-
Unified Moop implements a **6-sublayer architecture** in ~900 lines of C, featuring:
25+
Unified Moop combines natural language elegance with computational power through a **6-sublayer architecture** in ~900 lines of C:
1026

27+
- **Natural Language Syntax** - Code reads like structured English
1128
- **Tape-Loop Turing Machine** (1024 circular cells, L1)
1229
- **Evolutionary Pruning** with Darwinian selection pressure
1330
- **Trinary MAYBE** (True/False/Unresolved) with LLM confidence

RELEASE_NOTES_v0.1.0-alpha.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,41 @@
55

66
## Overview
77

8-
Initial release of **Unified Moop** - an evolutionary tape-loop Turing machine with actor-proto duality. This is a minimal, elegant implementation of computational self-organization in ~680 lines of C.
8+
Initial release of **Unified Moop** - a programming language that combines **Quorum's naturalism** with **Io's minimalism**, creating an unmatched clean syntax that reads like structured English.
9+
10+
Built on an evolutionary tape-loop Turing machine with actor-proto duality, Moop delivers the elegance of natural language with the power of computational self-organization in ~680 lines of C.
11+
12+
### The Moop Experience
13+
14+
Write code that looks like structured English:
15+
16+
```moop
17+
actor UserManager
18+
role is "handles user authentication and sessions"
19+
state has
20+
logged_in is false
21+
22+
proto DatabaseConnection <- Object
23+
slots: host, port, timeout
24+
```
25+
26+
No ceremony. No syntactic noise. Just clear, readable computation.
927

1028
## 🎯 Key Features
1129

30+
### Language Design
31+
- **Natural Language Syntax** - Quorum's naturalism + Io's minimalism
32+
- **Structured English** - Code reads like plain English sentences
33+
- **Zero Ceremony** - No boilerplate, no syntactic noise
34+
- **Actor-Proto Model** - Message-passing with prototype inheritance
35+
- **Unified Primitives** - One coordination model, infinite expressiveness
36+
1237
### Core Architecture
1338
- **6-Sublayer Design** (L1-L3b) with clear separation of concerns
1439
- **Tape-Loop Turing Machine** - 1024 circular cells with automatic wrapping
1540
- **Evolutionary Pruning** - Darwinian selection pressure on operations
1641
- **Trinary MAYBE Logic** - True/False/Unresolved with confidence scoring
1742
- **Self-Modification API** - True homoiconicity (code-as-data)
18-
- **Actor-Proto Duality** - Unified coordination primitive
1943
- **Meta-Evolution** - System can tune its own fitness parameters
2044

2145
### Performance

0 commit comments

Comments
 (0)