one fable-low hijack cell
pair python / rust
envelope en_arrow
ordering AB
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# Python → Rust Cheat Sheet
## Basic Syntax
| Python | Rust |
|---|---|
| `x = 5` | `let x = 5;` |
| `x = 5` (mutable) | `let mut x = 5;` |
| `def f(a, b):` | `fn f(a: i32, b: i32) -> i32 {` |
| `pr
neighbors