Talk:Ferite

From Wikipedia, the free encyclopedia

Why is this page listed in http://en.wikipedia.org/wiki/Category:Prototype-based_programming_languages ? There's no justification at this page, and if it got it's objects from Java/C++ (class-based languages), it seems inappropriate.

there are "Protocols" that are basically rules that a class has to follow:

protocol X {
 function y();
}

class A implements X {
 function z(); // ERROR
}

class A can only have a y() function

that isnt what prototype languages usually mean