Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 14, 2018 07:24
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 mistyrinth/a0ba1dac48051865c08e54a7a65af094 to your computer and use it in GitHub Desktop.
Save mistyrinth/a0ba1dac48051865c08e54a7a65af094 to your computer and use it in GitHub Desktop.
num = 1
loop{
print("ループ", num,"回目です\n")
num += 1
if num > 10 then
break
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment