fork download
  1. module CharSet = Set.Make(Char)
  2.  
  3. let my_set = CharSet.add 'a' CharSet.empty ;;
  4.  
  5. let l = CharSet.fold (fun elt acc -> elt::acc) my_set [];;
  6.  
Success #stdin #stdout 0.01s 2736KB
stdin
Standard input is empty
stdout
a