# coding=utf-8 id = 108 name = 'min/2' slug = 'find the smallest element' description = '''\
min(L, Min): Min is the smallest value in the list L.
min(L, Min)
Min
L
?- min([5,4,1,6], M). M = 1. ?- min([3,2,2], M). M = 2.