1
Fork 0

Remove 'implements' keyword in favour of :, part of #2301.

This commit is contained in:
Graydon Hoare 2012-06-22 18:19:35 -07:00
parent 3ed8561dea
commit f60cdf27e7
17 changed files with 21 additions and 20 deletions

View file

@ -3,7 +3,7 @@ iface animal {
fn eat();
}
class cat implements animal {
class cat : animal {
let meows: uint;
new(in_x : uint) { self.meows = in_x; }
}