Re: Which template is recommended.

2012-05-27 Thread Alex Rønne Petersen
On 27-05-2012 11:43, sclytrack wrote: Below there are two routines with the same name. Apparently both can be present at the same time. Which one of the two is the recommended code? import std.stdio; interface ITest { int first(); int second(); } class Test: ITest { int first() { writeln("

Which template is recommended.

2012-05-27 Thread sclytrack
Below there are two routines with the same name. Apparently both can be present at the same time. Which one of the two is the recommended code? import std.stdio; interface ITest { int first(); int second(); } class Test: ITest { int first() {