ruchy 4.1.1

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
# Getting Started with Ruchy

Welcome to Ruchy, a systems scripting language that transpiles to idiomatic Rust. This guide will help you get started with writing and running Ruchy code.

## Installation

### From Crates.io (Recommended)

```bash
cargo install ruchy
```

### From Source

```bash
git clone https://github.com/paiml/ruchy.git
cd ruchy
cargo install --path .
```

## Your First Ruchy Program

### Using the REPL

The easiest way to start with Ruchy is using the interactive REPL:

```bash
ruchy repl
```

Try these examples:

```ruchy
>>> println("Hello, Ruchy!")
Hello, Ruchy!

>>> let x = 42
>>> x * 2
84

>>> fn greet(name) {
...   println(f"Hello, {name}!")
... }
>>> greet("World")
Hello, World!
```

### Writing Ruchy Scripts

Create a file called `hello.ruchy`:

```ruchy
// hello.ruchy
fn main() {
    let name = "Ruchy"
    println(f"Welcome to {name}!")

    // Variables and types
    let x = 10
    let y = 3.14
    let message = "Systems scripting made easy"

    // Functions
    fn add(a, b) {
        a + b
    }

    println(f"10 + 20 = {add(10, 20)}")
}
```

Run it with:

```bash
ruchy run hello.ruchy
```

## Core Language Features

### Variables and Mutability

```ruchy
// Immutable by default
let x = 5

// Mutable variables
let mut counter = 0
counter = counter + 1

// Type annotations (optional)
let age: int = 25
let price: float = 19.99
```

### Functions

```ruchy
// Basic function
fn square(x) {
    x * x
}

// With type annotations
fn add(a: int, b: int) -> int {
    a + b
}

// Fat arrow syntax
let double = x => x * 2

// Default parameters
fn greet(name = "Guest") {
    println(f"Hello, {name}!")
}
```

### Control Flow

```ruchy
// If expressions
let result = if x > 0 {
    "positive"
} else if x < 0 {
    "negative"
} else {
    "zero"
}

// Pattern matching
match value {
    0 => "zero",
    1..=10 => "small",
    Some(x) => f"value: {x}",
    _ => "other"
}

// Loops
for i in 0..10 {
    println(i)
}

while condition {
    // loop body
}
```

### Collections

```ruchy
// Lists
let numbers = [1, 2, 3, 4, 5]
let doubled = numbers.map(x => x * 2)

// List comprehensions
let squares = [x * x for x in 0..10 if x % 2 == 0]

// Objects (HashMaps)
let person = {
    name: "Alice",
    age: 30,
    email: "alice@example.com"
}

// Accessing fields
println(person.name)
```

### String Interpolation

```ruchy
let name = "Ruchy"
let version = 3.6

// f-strings for interpolation
println(f"Welcome to {name} v{version}!")

// Expressions in interpolation
println(f"2 + 2 = {2 + 2}")
```

### Error Handling

```ruchy
// Using Result type
fn divide(a, b) {
    if b == 0 {
        Err("Division by zero")
    } else {
        Ok(a / b)
    }
}

// Try-catch blocks
try {
    risky_operation()
} catch e {
    println(f"Error: {e}")
}

// The ? operator
fn read_config() -> Result<Config, Error> {
    let content = read_file("config.json")?
    parse_json(content)
}
```

### Pipeline Operator

```ruchy
// Chain operations with |>
let result = "hello world"
    |> upper
    |> split(" ")
    |> map(reverse)
    |> join("-")
// Result: "OLLEH-DLROW"
```

## Advanced Features

### DataFrames

```ruchy
// Create a DataFrame
let df = df![
    "name" => ["Alice", "Bob", "Charlie"],
    "age" => [30, 25, 35],
    "city" => ["NYC", "SF", "LA"]
]

// Operations
df.filter(row => row.age > 25)
  .select(["name", "city"])
  .sort("age")
```

### Async/Await

```ruchy
async fn fetch_data(url) {
    let response = await http_get(url)
    response.json()
}

// In async context
let data = await fetch_data("https://api.example.com/data")
```

### Pattern Destructuring

```ruchy
// Tuple destructuring
let (x, y) = (10, 20)

// List destructuring with rest
let [first, second, ..rest] = [1, 2, 3, 4, 5]

// Object destructuring
let {name, age} = person
```

### Module System

```ruchy
// Import from standard library
import std::{fs, path}

// Import specific items
import math::{sqrt, pow, PI}

// Your own modules
import my_utils::{helper_function}
```

## REPL Magic Commands

The Ruchy REPL includes special commands for enhanced productivity:

```ruchy
// Show type of expression
:type 42
// Output: int

// Time execution
:time heavy_computation()
// Output: Execution time: 125ms

// Show variable bindings
:vars
// Shows all defined variables

// Load a file
:load my_script.ruchy

// Clear the screen
:clear

// Exit REPL
:quit
```

## Command Line Interface

```bash
# Run a Ruchy file
ruchy run script.ruchy

# Start the REPL
ruchy repl

# Transpile to Rust (for debugging)
ruchy transpile script.ruchy -o output.rs

# Parse and show AST (for debugging)
ruchy parse script.ruchy

# Show version
ruchy --version
```

## Best Practices

### 1. Use Type Inference

Ruchy has powerful type inference, so you don't need to annotate everything:

```ruchy
// Good - type is inferred
let x = 42

// Only annotate when necessary
fn process_data(data: DataFrame) -> Result<Stats, Error> {
    // implementation
}
```

### 2. Leverage Pattern Matching

Pattern matching is powerful and idiomatic:

```ruchy
// Good
match result {
    Ok(value) => process(value),
    Err(e) => handle_error(e)
}

// Also good with if-let for single patterns
if let Some(value) = optional_value {
    use_value(value)
}
```

### 3. Use Pipeline Operators for Data Transformation

```ruchy
// Clear and readable
data
    |> filter(valid)
    |> map(transform)
    |> reduce(combine)
```

### 4. Handle Errors Properly

```ruchy
// Use Result for fallible operations
fn parse_number(s: string) -> Result<int, ParseError> {
    // parsing logic
}

// Use ? for propagation
fn process() -> Result<(), Error> {
    let num = parse_number(input)?
    // continue processing
    Ok(())
}
```

## Common Patterns

### Reading Files

```ruchy
import std::fs

fn read_config(path) {
    let content = fs::read_to_string(path)?
    parse_json(content)
}
```

### Working with Collections

```ruchy
// Filter and map
let adults = people
    .filter(p => p.age >= 18)
    .map(p => p.name)

// Reduce
let sum = numbers.reduce(0, (acc, n) => acc + n)

// Zip multiple lists
let pairs = zip(keys, values)
```

### String Manipulation

```ruchy
let text = "Hello, World!"

// Common operations
text.upper()           // "HELLO, WORLD!"
text.lower()           // "hello, world!"
text.split(", ")       // ["Hello", "World!"]
text.replace("o", "0") // "Hell0, W0rld!"
text.contains("World") // true
```

## Troubleshooting

### Common Issues

1. **"Memory limit exceeded"**: The REPL has safety limits. For larger computations, use script files or adjust limits.

2. **"Type mismatch"**: Ruchy is strongly typed. Ensure types match or use explicit conversions:
   ```ruchy
   let x = 42
   let y = x.to_string()  // Convert to string
   ```

3. **"Variable not found"**: Check scope and spelling. Variables are block-scoped.

## Next Steps

- Explore the [Language Reference]SPECIFICATION.md for complete feature documentation
- Check out [Examples]../examples/ for more code samples
- Report issues and contribute at [GitHub Issues]https://github.com/paiml/ruchy/issues

## Getting Help

- **Documentation**: Full API docs at [docs.rs/ruchy]https://docs.rs/ruchy
- **Issues**: Report bugs at [GitHub Issues]https://github.com/paiml/ruchy/issues
- **Examples**: See the [examples/]../examples/ directory
- **REPL Help**: Type `:help` in the REPL

Happy coding with Ruchy! 🚀