I have this record type:
type syllable = {onset: consonant list; nucleus: vowel list; coda: consonant list};;
What if I want to instantiate a syllable where only the nucleus is defined? Can I give it a default value? Does it default to [] or something like that?