name = 'genlist/4' slug = 'generate a list of random numbers' description = '''\

genlist(L, N, Min, Max): the list L contains N random numbers from the interval [Min,Max).

?- genlist(L, 5, 10, 100).
  L = [12,99,81,24].
''' hint = {}