8 lines
144 B
C#
8 lines
144 B
C#
|
public class test {
|
||
|
public static void Main() {
|
||
|
int a, b, c, d, e = 1;
|
||
|
a = (b = (c = (d = 2)));
|
||
|
System.Console.WriteLine(a);
|
||
|
}
|
||
|
}
|