> better but I'm archaic, Pascal was my first language :)
syntax is the vietnam of programming languages? ('course in viet nam
it was called appropriately enough 'Resistance War Against America')
--
Live Security Virtual
And here was have it:
// define an interface with one method
interface A {
geta: unit -> int;
}
// extend it with a second method
interface B extends A {
getb: unit -> int;
}
// implement a class for the first interface A
object anA (a:int) implements A = {
omethod fun geta()=> a