Initial commit

This commit is contained in:
2018-02-22 23:01:00 +01:00
commit 8a754080ba
378 changed files with 2723 additions and 0 deletions

18
13.1-Enkel_OOP/Katt.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
public class Katt {
private string namn;
public Katt() {
Console.WriteLine("Skapade en Katt");
}
public string getName() {
return namn;
}
public void setName(string n) {
namn = n;
}
}