You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
abstract type Species end
struct Mouse <: Species end
struct Cat <: Species end
@with_kw struct Experiment{S<:Species}
n::Int = 50
c::Float64 = 10.0
x::Float64 = 0.2
date::Date = Date(1991, 04, 13)
species::S = Mouse()
scientist::String = "George"
end
# Make a couple of experiments
e1 = Experiment()
MWE:
You can see that the
date
entry is blank. doesn't display the date.The text was updated successfully, but these errors were encountered: