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

11
13.1-Enkel_OOP/Hund.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
public class Hund {
public string namn;
// FEL!!!!!
public Hund() {
Console.WriteLine("Skapade en Hund");
}
}