fork download
  1. using System;
  2.  
  3. namespace ProgramConsole
  4. {
  5. public class Program
  6. {
  7. public delegate void processRecord(int a, int b);
  8.  
  9. public static void someFunction(processRecord fcn)
  10. {
  11. throw new NotImplementedException();
  12. }
  13.  
  14. public static void Main(string[] args)
  15. {
  16.  
  17. someFunction(delegate(int a, int b)
  18. {
  19.  
  20. });
  21. }
  22.  
  23. }
  24. }
Runtime error #stdin #stdout 0.02s 36320KB
stdin
Standard input is empty
stdout
Standard output is empty