Beispiel #1
0
 public FVCalcProgram(CalcOptions opts)
 {
     this.opts = opts;
 }
Beispiel #2
0
        static int RunCalcMode(CalcOptions opts)
        {
            var program = new FVCalcProgram(opts);

            return(program.Run());
        }