Skip to content

Instantly share code, notes, and snippets.

@yuya-maemichi-synspective
Created June 27, 2023 10:38
Show Gist options
  • Save yuya-maemichi-synspective/315a8739e44e48a52f717d9e1ed517b1 to your computer and use it in GitHub Desktop.
Save yuya-maemichi-synspective/315a8739e44e48a52f717d9e1ed517b1 to your computer and use it in GitHub Desktop.
Rust Questions
fn main() {
let v0 = vec![0, 1, 2];
let v1 = vec![3, 4, 5];
vec![v0, v1].concat()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment