Write Prolog (SWI Prolog) clauses that define the predicate sublist, such that the relation defined is true when the second argument is a (contiguous and same order) sublist of the first argument.
For example, sublist ( [a,b,c,d,e,f],[c,d,e]) is true, but sublist ([a,b,c,d,e,f],[b,d]) is not.