fork download
using System;

namespace ProgramConsole
{
    public class Program
    {
        public delegate void processRecord(int a, int b);

        public static void someFunction(processRecord fcn)
        {
            throw new NotImplementedException();
        }

        public static void Main(string[] args)
        {

            someFunction(delegate(int a, int b)
                             {

                             });
        }

    }
}
Runtime error #stdin #stdout 0.02s 36320KB
stdin
Standard input is empty
stdout
Standard output is empty