using System;
// Variables can start with a letter or underscore, but not a number. They contain letters/underscores/numbers.
int i = 0;
short sh = 330;
byte by = 254;
decimal p = 5.27m;
double d = 7.7777;
float f = 4.44f;
bool b = true;
System.Boolean bool2 = false;
Boolean bool3 = true;
string s = "Now is the time for all good men to come to the aid of their country.";
s = "blah";
s = "my name is \"Auri\"";
s = "1\t2\t3\n4\t5\t6";
Console.Write(s);
Console.WriteLine(s);
s = "Hello \u0499";
if (s.EndsWith("")) { /* do something */ }
char c = 'S';