Skip to content

Instantly share code, notes, and snippets.

@mattkohl
Last active April 3, 2017 13:09
Show Gist options
  • Save mattkohl/5857f57b128c444780e514c770c4f235 to your computer and use it in GitHub Desktop.
Save mattkohl/5857f57b128c444780e514c770c4f235 to your computer and use it in GitHub Desktop.
FP version of "echo()"
def identity_print(x):
print(x)
return x
echo_FP = lambda: identity_print(input("FP -- "))=='quit' or echo_FP()
echo_FP()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment