"Less than or equal to"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
[[분류: 비교 연산자]]
;less than or equal to
;less than or equal to
;<=
;<=

2019년 5월 18일 (토) 14:05 판

less than or equal to
<=

1 PHP

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

2 Ruby

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

3 같이 보기

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