My question has 3 parts:
Given a file
.sig
with a signature, how to import it correctly into a file.sml
specifying a structure implementation?Given a file
.sml
specifying a structure implementation, how to correctly import it into other.sml
files?Where can I find more information on structuring SML projects? Simple websearch didn't help.
I was told that open SomeStructure
is not a safe way. I am new to ML-family idioms, hence the question. Thanks.