module Math

Public Class Methods

max(a, b) click to toggle source
# File lib/xhtmldiff.rb, line 7
def Math.max(a, b)
        a > b ? a : b
end