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/Kanin.cs Normal file
View File

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