fork(2) download
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. var a = 10;
  8. Console.WriteLine(-~a); // 11
  9. Console.WriteLine(~-a); // 9
  10. }
  11. }
  12.  
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
11
9