public class ExampleDriver
{
	public static void main(String [] args)
		{
			OverridingClass o = new OverridingClass();  
			o.thisMethod();   //Execute the overriding methods
			System.out.println(o.secondMethod(5,7));
		}
}		
class OverridingClass implements Example
{
    public void thisMethod( )        //All methods  in an interface must be overridden
        {
            	System.out.println("The constant value " + exampleField);
					//Fields may be accessed here
        }
	public double secondMethod( int a, double b)   //NOTE: NO semicolon
        {
		    return exampleField * a * b;
        }
}	
