Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created May 5, 2020 16:28
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/42d8b5cd278b503b162cac3218176e58 to your computer and use it in GitHub Desktop.
Save fitomad/42d8b5cd278b503b162cac3218176e58 to your computer and use it in GitHub Desktop.
public struct Potencias
{
/// Elevar a 2
@Power(2) public var numero = 10
/**
Salida detallada de la operación
*/
public func show() -> Void
{
print("\(self._numero.value) elevado a \(self._numero.power) = \(self.numero)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment