-- Copyright 2003, Trustees of Indiana University -- Please see the license in the file ../LICENSE class PLUS[T->NUMERIC] inherit BINARY_FUNCTION[T] redefine op end feature op (x: T; y: T) : T is do Result := x + y end end -- PLUS