RCRPG/Rust: Difference between revisions

Content added Content deleted
(Refactoring)
m (Fixed syntax highlighting.)
 
Line 2: Line 2:
[[Rust]] version of [[:Category:RCRPG|RCRPG]].
[[Rust]] version of [[:Category:RCRPG|RCRPG]].


==Code==
===Code===
<lang rust>
<syntaxhighlight lang="rust">
//! Implementation of the simple text-based game [RCRPG](https://web.archive.org/web/20080212201605/http://shortcircuit.us/muddy-kinda-like-a-mud-but-single-player/)
//! Implementation of the simple text-based game [RCRPG](https://web.archive.org/web/20080212201605/http://shortcircuit.us/muddy-kinda-like-a-mud-but-single-player/)
//! in Rust
//! in Rust
Line 615: Line 615:
}
}
}
}
}</lang>
}</syntaxhighlight>