mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
17 lines
101 B
Ruby
17 lines
101 B
Ruby
class Integer
|
|
|
|
=begin
|
|
|
|
result = 5.empty?
|
|
|
|
result
|
|
|
|
false
|
|
|
|
=end
|
|
|
|
def empty?
|
|
false
|
|
end
|
|
|
|
end
|