Skip to main
this.isMin.uk
About
Random
rust에서 튜플로 할당과 리턴하기
let
(a, b)
=
sample();
fn
sample
() -> (
i32
,
i32
) { (
1
,
2
) }
Rust
,
Til