Skip to content

Instantly share code, notes, and snippets.

@jstacoder
Forked from podhmo/hello_oneline.py
Last active August 29, 2015 14:10
Show Gist options
  • Save jstacoder/4dbdebcf613d1816f419 to your computer and use it in GitHub Desktop.
Save jstacoder/4dbdebcf613d1816f419 to your computer and use it in GitHub Desktop.
(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