public FVCalcProgram(CalcOptions opts) { this.opts = opts; }
static int RunCalcMode(CalcOptions opts) { var program = new FVCalcProgram(opts); return(program.Run()); }