Skip to content

Instantly share code, notes, and snippets.

@theevo
Created July 30, 2020 16:28
Show Gist options
  • Save theevo/fb8bdbeb0fb8e24980ae7de7edac7da4 to your computer and use it in GitHub Desktop.
Save theevo/fb8bdbeb0fb8e24980ae7de7edac7da4 to your computer and use it in GitHub Desktop.
if true, true {
print("Both are true")
}
if true, false {
print("")
} else {
print("One of these is false")
}
if false, true {
print("")
} else {
print("One of these is false")
}
if false, false {
print("")
} else {
print("One of these is false")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment