Sobes.tech
Junior — Senior

Analysis of code behavior when copying lines

livecode

Task condition

Что выведет следующая программа?

string first = "test1";
string second = first;
second = "test2";
Console.WriteLine(first);