8 lines
178 B
Text
8 lines
178 B
Text
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, "\"")
|