Enter your book access code

The curriculum, drills, tutor, and interviewer mode are for readers of Ace the Rust Interview. The code is printed in the Preface (Companion site access).

Don’t have the book yet? The landing page stays open — purchase unlocks this gym.

beginner · order 21

Scalars Copy; Strings move

own-fn-03Related book chapters: 5 (optional — this page is complete on its own)Copyi32

Slug: own-fn-03 · Paired reading: Chapter 5

Prompt

fn pair_and_keep(n: i32, s: String) -> (i32, i32, String) — return (n, n, s). n can appear twice because i32: Copy; s moves once.