Zero-to-Rust: 중간 언어 없이, 처음부터 Rust로!
弘益人間 - 널리 인간을 이롭게 하라
No intermediate languages. Start with Rust from day one. We believe Rust isn't hard - it's just different.
See memory in action. Our animated visualizations make ownership, borrowing, and lifetimes crystal clear.
Monaco Editor with real-time compilation via WASM. Code, visualize, and learn in your browser.
Structured path from beginner to expert. Each level builds on the previous with hands-on projects.
Earn Bronze to Diamond certifications. Prove your Rust skills with industry-recognized credentials.
Build real projects with WIA standards. Connect with WIA-HOME, WIA-AI-CITY, and more.
fn main() { let s1 = String::from("hello"); let s2 = s1; // s1 moved to s2 // println!("{}", s1); // Error: s1 no longer valid println!("{}", s2); // OK: s2 owns the data }
교보문고 658페이지 책을 28편 영상으로! 움직이는 메모리 시각화로 배우는 Rust