예제 #1
0
파일: Driver.cs 프로젝트: tonyg/newmoon
 public object vCallScheme(Module m, Closure c, object[] args)
 {
     return c.ApplyVarargs(new ToplevelContinuation(m), args);
 }
예제 #2
0
파일: Driver.cs 프로젝트: tonyg/newmoon
 public object CallScheme(Module m, Closure c, params object[] args)
 {
     return vCallScheme(m, c, args);
 }