Skip to content

Instantly share code, notes, and snippets.

@RodionGork
Last active June 25, 2023 06:04
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 RodionGork/1efd0695bf0f49bc6428baf16b5cbd5b to your computer and use it in GitHub Desktop.
Save RodionGork/1efd0695bf0f49bc6428baf16b5cbd5b to your computer and use it in GitHub Desktop.
print('Running the code from Gist passed in the url')
print()
print('Triangle Numbers:')
for i = 1, 13 do
print(i, i * (i+1) / 2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment