rshtml_core 0.2.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
@{

    let s = "'<script/>'";

}     fn inline_function() -> String {
        "inline function".to_string()
    }

    for i in 0..10 {
        println!("Item {}", i);
    }

    let mut show_array = |arr: [i32;5]| -> ::std::fmt::Result {
        Ok(())
    };

    let x = 5;
    let mut arr: [i32;5] = [1,2,3,4,0];
    arr[4] = x;
    show_array(arr)?;

    let data = 42;
    let result = match data {
        42 => data,
        _ => 0,
    };
}