Skip to content

Instantly share code, notes, and snippets.

Created June 20, 2016 11:39
Show Gist options
  • Save anonymous/ba981499c41674dfeb41221206de11c2 to your computer and use it in GitHub Desktop.
Save anonymous/ba981499c41674dfeb41221206de11c2 to your computer and use it in GitHub Desktop.
Shared via Rust Playground
// for frank
fn main() {
let bar = [1,2,3];
let mut foo: [u8; 2] = [0, 0];
foo.clone_from_slice(&bar[0..2]);
println!("{:?}", foo);
println!("{:?}", bar);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment