Else

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:31 판 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
else

1 Bash

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 PHP

if ( 1 == 1 ) {
	echo "True";
} else {
	echo "False";
}
# True
if ( 1 == 2 ):
	echo "True";
else:
	echo "False";
endif;
# False

3 Python

if 1==1:
	print(True)
else:
	print(False)
# True
if 1==2:
	print(True)
else:
	print(False)
# False

4 Perl

if ( 1 eq 1 ) {
	print "True";
} else {
	print "False";
}
# True
if ( 1 eq 2 ) {
	print "True";
} else {
	print "False";
}
# False

5 Ruby

if 43 > 42
	puts 'true'
else
	puts 'false'
end
# true

6 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}