CS计算机代考程序代写 module AddBiggest where

module AddBiggest where

— | addBiggest

— Given three Ints as input,
— add the two Ints that are larger than or equal to the other.

— Examples:

— >>> addBiggest 1 3 5
— 8

— >>> addBiggest 3 1 5
— 8

— >>> addBiggest 3 5 1
— 8

addBiggest :: Int -> Int -> Int -> Int
addBiggest = undefined