isMultiple :: a -> BoolisMultiple 3 = TrueisMultiple 5 = TrueisMultiple x | x mod 3 == 0 = True | x mod 5 == 0 = True | otherwise = False
Standard input is empty
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!