Guest User

Untitled

a guest
Oct 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // k... nak... naKaka pagpAbaGaBag
  2. static answer: Option<&String> = None;
  3.  
  4. fn llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch(s: &String){
  5. answer = Some(s);
  6. }
  7.  
  8. fn pneumonoultramicroscopicsilicovolcanoconiosis(){
  9. println!("{}", answer.unwrap());
  10. }
  11.  
  12. fn main(){
  13. let s = String::from("17");
  14. let t = "Hi! I am a cat. AOOOWRRRWWW! Me need Whiskas! Noow! Mee hungry hast bekommen. Feedme! sudo !!. Sad... six cable hostage wire cable diediediediee # */";
  15. llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch(&s);
  16. pneumonoultramicroscopicsilicovolcanoconiosis();
  17. }
Add Comment
Please, Sign In to add comment