Syntaxic sugar for Rust
[][Repository]
[][crates.io]
[][Documentation]
```rust
use ::std::*;
type ErrorMsg = borrow::Cow<'static, str>;
fallible!{
fn main ()
-> ()
=>! ErrorMsg
:
let inputnumber: u64 = {
let (mbargv0, mbargv1) = {
let mut args = env::args();
(args.next(), args.next())
};
let progname = mbargv0.unwrap();
match mbargv1
.andthen(|argv1| argv1.parse().ok())
{
Some(number) => number,
_ => throw!(format!("Usage: {}
fn collatzconjecture (mut n: u64) { doloop!({ println!("n = {}", n); if n % 2 == 0 { n /= 2; } else { n = 3 * n + 1; }; } while n != 1); println!("Did reach 1."); } ```
Add this line to your Cargo.toml
(under [dependencies]
):
toml
candy = "0.1.0"
Add this to your .rs
code:
```rust
```