Skip to content

Instantly share code, notes, and snippets.

@tkhk
Last active October 2, 2015 08:44
Show Gist options
  • Save tkhk/7cac750d82f88062e940 to your computer and use it in GitHub Desktop.
Save tkhk/7cac750d82f88062e940 to your computer and use it in GitHub Desktop.
a = "a"
b = "b"
c = "c"
print(a and b or c) -- b
a = nil
b = "b"
c = "c"
print(a and b or c) -- c
a = "a"
b = nil
c = "c"
print(a and b or c) -- c
a = "a"
b = "b"
c = nil
print(a and b or c) -- b
a = "a"
b = nil
c = nil
print(a and b or c) -- nil
a = nil
b = nil
c = "c"
print(a and b or c) -- c
a = nil
b = "b"
c = nil
print(a and b or c) -- nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment