Created
July 1, 2017 14:12
-
-
Save solanoize/b3e05d212aa4252d0af20d04f0d91365 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def tagger_div(f): | |
| def wrapper(name): | |
| return "<div>" + f(name) + "</div>" | |
| return wrapper | |
| def tagger_par(f): | |
| def wrapper(name): | |
| return "<p>" + f(name) + "</p>" | |
| return wrapper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment