Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created October 22, 2015 13:43
Show Gist options
  • Save renatooliveira/3842d90fae0c3ed65680 to your computer and use it in GitHub Desktop.
Save renatooliveira/3842d90fae0c3ed65680 to your computer and use it in GitHub Desktop.
def my_or(a, b):
if a:
return a
else:
return b
x = "renato"
x = my_or(x, "felipe")
y = ""
y = my_or(y, "felipe")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment