Update RELEASES.md

This commit is contained in:
XAMPPRocky 2020-02-10 15:29:14 +01:00 committed by GitHub
parent 7ab01b2467
commit 32daa2aa38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ Language
match words {
["Hello", "World", "!", ..] => println!("Hello World!"),
["Foo", "Bar", ..] => println!("Baz"),
rest => println!("{}", rest),
rest => println!("{:?}", rest),
}
}
```