|
|
@ -1,3 +1,12 @@ |
|
|
|
// Copyright 2015 Drew Short <drew@sothr.com>.
|
|
|
|
//
|
|
|
|
// Licensed under the MIT license<LICENSE-MIT or http://opensource.org/licenses/MIT>.
|
|
|
|
// This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
extern crate perceptual_image_hashing;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello, world!");
|
|
|
|
let mut string = String::new();
|
|
|
|
string = perceptual_image_hashing::hello(string);
|
|
|
|
println!("{}",string);
|
|
|
|
}
|