extern crate termion; use std::io::{stdin, stdout, Write}; use termion::event::{Event, Key}; use termion::input::TermRead; use termion::raw::IntoRawMode; fn main() { let stdin = stdin(); // Rawモードに移行 // into_raw_modeはIntoRawModeトレイトに定義されている // めんどくさいので失敗時は終了(unwrap) // stdout変数がDropするときにrawモードから元の状態にもどる let mut stdout = stdout().into_raw_mode().unwrap(); // eventsはTermReadトレイトに定義されている for evt in s