Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created June 18, 2019 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/e2dd1c639f24cd4460d953655db57490 to your computer and use it in GitHub Desktop.
Save rust-play/e2dd1c639f24cd4460d953655db57490 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
fn main()
{
for y in 1..13
{
for x in 1..13
{
println!("{} x {} : {}", y, x, y * x);
}
println!("");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment