Abstract type: Difference between revisions

Content deleted Content added
added Nemerle
m →‎{{header|Nemerle}}: interfaces don't have access modifiers (oops)
Line 1,031: Line 1,031:
interface IJuiceable
interface IJuiceable
{
{
public Juice() : void; // interfaces contain only the signatures of methods
Juice() : void; // interfaces contain only the signatures of methods
}
}