Problem
Define a HASCKLE function neverFollows of type (integer, integer, [integer] -> bool) so that neverFollows (x, y, lst) is true if and only if whenever x occurs in the list lst, it is not followed by y. Try your function out on(neverFollows ('b', 'g', "dbabbg"), neverFollows(9, 6, [1, 6, 9, 5, 1, 4, 9]))Turn in a listing of the function and the results of the test run.