Advertisement
Guest User

meh

a guest
Dec 2nd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. def push_three():
  2.     return 3
  3.  
  4. def drug_pusher(client):
  5.     client(push_three())
  6.  
  7. drug_pusher(lambda x: print("hi {}".format(x)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement