Skip to content

ex2 1

← Back

Basic Info

Functional Programming
└── Lab ML
    └── 0​429
        └── ex2 1.sml

Preview

(* Give a type definition for a set of sets, where the type of elements is unspecified, and sets are represented by lists *)

type ’a setOfSets = ’a list list;