git-subtree-dir: string-tries-sml git-subtree-mainline:dba78da7ecgit-subtree-split:d056e08ce7
12 lines
192 B
Standard ML
12 lines
192 B
Standard ML
structure InsertStringSet =
|
|
struct
|
|
fun main () =
|
|
let
|
|
val endTrie = Vector.foldl StringSet.insert StringSet.empty WordsList.words
|
|
in
|
|
()
|
|
end
|
|
end
|
|
|
|
val _ = InsertStringSet.main ()
|