Skip to content

Instantly share code, notes, and snippets.

@PaperBirdMaster
Created April 7, 2015 21:43
Show Gist options
  • Save PaperBirdMaster/c572970bdda3a9371bd4 to your computer and use it in GitHub Desktop.
Save PaperBirdMaster/c572970bdda3a9371bd4 to your computer and use it in GitHub Desktop.
template <typename T> constexpr T Pi{3.1415926535897932385};
template <typename T> T area_circulo(T radio)
{
return Pi<T> * radio * radio;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment