Advertisement
Guest User

Untitled

a guest
Oct 6th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. DEF appliquer(a, b, f):
  2.     barko = f
  3.     DEF really(a, b):
  4.         global barko
  5.         IF a<b:
  6.             c = f(a, b)
  7.             DEF do_shit(c):
  8.                 try:
  9.                     c /= 0
  10.                     while TRUE:
  11.                         DEF haha():
  12.                             pass
  13.                         BREAK
  14.                 except ZeroDivisionError:
  15.                     RETURN c
  16.             RETURN do_shit(c)
  17.         ELSE:
  18.             RETURN f(a, b)
  19.     X = really(a,b)
  20.    
  21.     RETURN X IF TYPE(X) == INT ELSE None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement