Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MagSosiq/b14ba63edc72411150c96969261c1ea6 to your computer and use it in GitHub Desktop.
Save MagSosiq/b14ba63edc72411150c96969261c1ea6 to your computer and use it in GitHub Desktop.
namespace HW1
{
internal class Program
{
static void Main(string[] args)
{
char letter = 'A';
string line = "Hello, world!";
int count = 1;
byte symbol = 0;
short year = -3250;
float length = 11.75f;
bool isShorter = true;
sbyte minusSymbol = -120;
uint budget = 278600000;
double numberPi = 3.1415926535;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment