Created
June 27, 2023 10:38
-
-
Save yuya-maemichi-synspective/315a8739e44e48a52f717d9e1ed517b1 to your computer and use it in GitHub Desktop.
Rust Questions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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