fork download
  1. module CharSet = Set.Make(Char)
  2.  
  3. let my_set = CharSet.add 'a' CharSet.empty ;;
  4.  
  5. let l = CharSet.elements my_set ;;
  6.  
Success #stdin #stdout 0.02s 2736KB
stdin
Standard input is empty
stdout
a