document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. extern crate phrase;
  2.  
  3. use phrase::english::greeting as en_greeting;
  4. use phrase::chinese::greeting as zh_greeting;
  5.  
  6. fn main() {
  7.     assert_eq!("Hello, Michael", en_greeting::hello("Michael"));
  8.     assert_eq!("你好,麥可", zh_greeting::hello("麥可"));
  9. }
');