- else
1 Bash[ | ]
Bash
Copy
He="John Smith"
if [ "$He" = "John Smith" ]; then
echo "He is John Smith"
else
echo "He is not John Smith"
fi
# He is John Smith
2 Go[ | ]

Go
Copy
package main
import "fmt"
func main() {
if 7%2 == 0 {
fmt.Println("7 is even")
} else {
fmt.Println("7 is odd")
}
if 8%4 == 0 {
fmt.Println("8 is divisible by 4")
}
if num := 9; num < 0 {
fmt.Println(num, "is negative")
} else if num < 10 {
fmt.Println(num, "has 1 digit")
} else {
fmt.Println(num, "has multiple digits")
}
}
Loading
3 PHP[ | ]

PHP
Copy
if ( 1 == 1 ) {
echo "True";
} else {
echo "False";
}
# True
PHP
Copy
if ( 1 == 2 ):
echo "True";
else:
echo "False";
endif;
# False
4 Python[ | ]
Python
Copy
if 1==1:
print(True)
else:
print(False)
# True
Python
Copy
if 1==2:
print(True)
else:
print(False)
# False
5 Perl[ | ]
Perl
Copy
if ( 1 eq 1 ) {
print "True";
} else {
print "False";
}
# True
Perl
Copy
if ( 1 eq 2 ) {
print "True";
} else {
print "False";
}
# False
6 Ruby[ | ]
Ruby
Copy
if 43 > 42
puts 'true'
else
puts 'false'
end
# true