Files
Introduktion-till-CSharp/13.2-Superklass/Hund.cs
2018-02-22 23:01:00 +01:00

11 lines
116 B
C#

using System;
public class Hund : Husdjur {
public void geLjud() {
Console.WriteLine("Hunden skaller");
}
}