Rust loops: Difference between revisions

From wikinotes
(Created page with "= loop = <blockquote> <syntaxhighlight lang="rust"> loop { // loop forever } </syntaxhighlight> </blockquote><!-- loop -->")
(No difference)

Revision as of 23:48, 6 February 2023

loop

loop {
    // loop forever
}