Question: Define the function fromMtoN : int -> int -> (int list) in OCaml that behaves as follows: Given the positive numbers m and n, it

Define the function fromMtoN : int -> int -> (int list) in OCaml that behaves as follows: Given the positive numbers m and n, it produces a list of numbers from m down to n. If m is smaller than n, then the result should be the empty list. Some example outputs for the function # fromMtoN 7 3;; -: int list = [7; 6; 5; 4; 3] # fromMtoN 3 3;; -: int list = [3] # fromMtoN 3 7;; -: int list = []
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
