The simple function of concatenating strings does not seem to be working. I tried this simplest of codes on v1.1.0.
function f(name::String) :: String
return String(name, “_GaussKer”);
end
julia> s = f(“test”)
ERROR: MethodError: no method matching String(::String, ::String)
Closest candidates are:
Do you know what is happening ?