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

View File

@@ -0,0 +1,17 @@
using System;
class DataTypes {
public static void Main() {
short litet = 5325;
int medel = 75475;
long stort = 5432432;
float pi = 3.14159f;
bool gubbe = true;
Console.WriteLine("Litet: " + litet);
Console.WriteLine("Medel: " + medel);
Console.WriteLine("Stort: " + stort);
Console.WriteLine("Pi: " + pi);
Console.WriteLine("Gubbe: " + gubbe);
}
}