main
 1using System;
 2
 3namespace specs
 4{
 5  static public class call
 6  {
 7    static public Action to(Action action)
 8    {
 9      return action;
10    }
11  }
12}