Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created May 5, 2020 15:52
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 fitomad/31fd4f8a123e81e1f207b9bb8479db8a to your computer and use it in GitHub Desktop.
Save fitomad/31fd4f8a123e81e1f207b9bb8479db8a to your computer and use it in GitHub Desktop.
public struct Potencias
{
/// Elevar a 2
@Power(2) public var numero = 10
...
}
//
// Prueba
//
var potencias = Potencias()
print("10 elevado a 2 es \(potencias.numero)")
// el resultado es: 10 elevado a 2 es 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment