public double Arithmetic(double F) { return MyUniverse.Add() - MyWorld.Subtract(F); // will trivially equal F }
public static double Subtract(double D) { E = D - MyUniverse.Add(); // Note how I specify the class name before the method: this works only for static methods return E; }