Thank you for your kind reply. I thought for keyword arguments, without specifying a value, it will use the default provided value, right? Like in this case, if I did not specify deletFraction in the function call deletedArea, then it will be the default provided value 0?
No, to get the default value, you simply don’t mention it at all
function f(; the_keyword="the default value", another_keyword="not what I want")
println(the_keyword)
println(another_keyword)
end
f(; another_keyword="what I want")