Skip to content

Instantly share code, notes, and snippets.

@Juanpe
Last active December 11, 2018 17:43
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 Juanpe/e8e582aa3fac91bf37638d4f5fed442a to your computer and use it in GitHub Desktop.
Save Juanpe/e8e582aa3fac91bf37638d4f5fed442a to your computer and use it in GitHub Desktop.
var logger = Logger(strategy: CapitalizedStrategy())
logger.log("my first strategy") // My First Strategy
logger = Logger(strategy: UppercaseStrategy())
logger.log("my first strategy") // MY FIRST STRATEGY
logger = Logger(strategy: LowercaseStrategy())
logger.log("my first strategy") // my first strategy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment