Closed4

Nannou | Rust メモ

へぶんへぶん

enum をランダムに選ぶ

use rand::*;
use rand::seq::*;

enum Direction {
    Left,
    Right,
    Up,
    Down,
}

let mut rng = thread_rng();
let next_direction = [
    Direction::Left,
    Direction::Right,
    Direction::Up,
    Direction::Down,
].choose(&mut rng);
このスクラップは2021/09/04にクローズされました