-
-
Save jstacoder/4dbdebcf613d1816f419 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
(lambda flask: | |
(lambda Flask: | |
(lambda app: | |
(lambda hello: | |
[f() for f in [ | |
lambda : app.route("/")(hello), | |
lambda : app.run() if __name__ == "__main__" else None | |
] | |
][-1] | |
)(lambda : | |
"Hello World" | |
) | |
)(Flask | |
( | |
__name__ | |
) | |
) | |
)(getattr | |
(flask, "Flask") | |
) | |
)( | |
__import__("flask") | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment