Greater than or equal to

Jmnote (토론 | 기여)님의 2016년 10월 25일 (화) 13:23 판
greater than or equal to
>=

1 PHP

var_dump( 5 >= 4 );
# bool(true)
var_dump( 5 >= 5 );
# bool(true)
var_dump( 5 >= 6 );
# bool(false)

2 Ruby

puts 5 >= 4
# true
puts 5 >= 5
# true
puts 5 >= 6
# false

3 같이 보기

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