Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
310 Bytes
public class StringAssignChangeDemo {
public static void main(String[] args) {
String s1 = "Noah";
String s2 = s1;
System.out.println(s1);
System.out.println(s2 + "\n");
s1 = "Charles";
System.out.println(s1);
System.out.println(s2 + "\n");
}
}