string.rs 251 B

1234567
  1. extern crate ralloc;
  2. fn main() {
  3. assert_eq!(&String::from("you only live twice"), "you only live twice");
  4. assert_eq!(&String::from("wtf have you smoked"), "wtf have you smoked");
  5. assert_eq!(&String::from("get rekt m8"), "get rekt m8");
  6. }