Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program {
- private static System.Int32 x = 0;
- private static System.Int32 f() {
- x = x + 10;
- return 1;
- }
- public static void Main() {
- x += f();
- System.Console.WriteLine( x );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement