Skip to content

Instantly share code, notes, and snippets.

@pablophg
Last active December 30, 2015 03:19
Show Gist options
  • Save pablophg/7768228 to your computer and use it in GitHub Desktop.
Save pablophg/7768228 to your computer and use it in GitHub Desktop.
Function that rounds a number to 2 decimals and returns it as string.
function prettyround(number)
return string.format('%.2f', number)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment