Why the following code outputs aa;”bb”, instead of aa;bb or “aa”;”bb”?
aa;”bb”
aa;bb
“aa”;”bb”
function(func) message("${ARGV}") endfunction() func("aa";"bb")