PPrimitiveParameters.java program from open Texas code
Class name: PrimitiveParameters
Methods: go(),falseSwap(int x, int y),moreParameters(int a, int b). All are static methods with no returns, all three static methods have input parameters.
Swap the values of x and y using temp field. Print the values of x and y before and after.
Product of a and b is assigned to a. Assigned 12 to b. Swap the values of a and b using falseSwap() method.
Print the values of a and b.