julia> struct MyType n::Int64 end
julia> a = MyType(3)
MyType(3)
julia> a.n
3
julia> b = MyType()
ERROR: MethodError: no method matching MyType()
Can I set a default number for the field n
(e.g., n = 1
by default) so that I can call the type without any input argument?