public object vCallScheme(Module m, Closure c, object[] args) { return c.ApplyVarargs(new ToplevelContinuation(m), args); }
public object CallScheme(Module m, Closure c, params object[] args) { return vCallScheme(m, c, args); }