hulk 0.1.7

An ultra simple Static site generator. Designed for Technical as well as non Technical users in mind.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Result Consumed
```rust
use std::fs::File;
fn main() {
   let f = File::open("main.jpg");   // main.jpg doesn't exist
   match f {
      Ok(f)=> {
         println!("file found {:?}",f);
      },
      Err(e)=> {
         println!("file not found \n{:?}",e);   //handled error
      }
   }
   println!("end of main");
}
```