Guest User

Untitled

a guest
Jul 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. struct Foo{
  2. x: String
  3. }
  4.  
  5. impl Foo {
  6.  
  7. fn bar(mut self) {
  8. self.x.push('b');
  9. }
  10. }
  11.  
  12. fn main() {
  13. println!("Hello, world!");
  14. }
Add Comment
Please, Sign In to add comment