Reputation: 143
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.
Upvotes: 1
Views: 492
Reputation: 143
OK, I finally found this example, which is about module management in the SML project: How to import from another file in SML, with a path relative to the importer?
Upvotes: 1