Files
sml-projects/string-tries-sml/bench/insert-string-set.sml

12 lines
192 B
Standard ML
Raw Permalink Normal View History

structure InsertStringSet =
struct
fun main () =
let
val endTrie = Vector.foldl StringSet.insert StringSet.empty WordsList.words
in
()
end
end
val _ = InsertStringSet.main ()