Skip to content

Instantly share code, notes, and snippets.

@toshimasa-nanaki
Last active December 3, 2018 13:22
Show Gist options
  • Save toshimasa-nanaki/6950fb82d0fb36407a69a2a9a1012e5e to your computer and use it in GitHub Desktop.
Save toshimasa-nanaki/6950fb82d0fb36407a69a2a9a1012e5e to your computer and use it in GitHub Desktop.
Rust ループ(無限)
fn main() {
loop {
println!("infinite loop");
}
//以下のようにも書けるが非推奨。
//while true{
//  println!("infinite loop");
//}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment