s = "Rosetta Code"
t = s
println("s = \"", s, "\" and, after \"t = s\", t = \"", t, "\"")
s = "Julia at "*s
println("s = \"", s, "\" and, after this change, t = \"", t, "\"")