1 2 3 4 5 6 7 8 9 10 11 12
--- name: "list/mode" module: "lists" section: "Statistics" --- Return the most frequent value. If tied, returns a list. ```sema (list/mode '(1 2 2 3 3 3)) ; => 3 (list/mode '(1 1 2 2)) ; => (1 2) ```