On Saturday, 13 June 2020 at 13:08:29 UTC, realhet wrote: > How can be a string represented with 'null' by default instead > on `""`. Unless I state it explicitly with name="" ? o.O Because string is simply `alias string = immutable(char)[]`, and default initializer for arrays is null.