New to julia : ldapclient output format

In my Julia script :

for entry in LDAPClient.each_entry(chain)
uid=“(entry["uid"])" nom="(entry[“gecos”])”
group=“$(entry[“GTP”])”
println(“$uid;$nom;$group”)
end

got [“waynstar84”];[“wayne stark”];[“-”]

how to change the output format ?

Please read

In particular the points about providing a runnable example and quoting your code in triple backticks ```. In this instance I think it would also be good if you could give details on the expected output.