Skip to content

Instantly share code, notes, and snippets.

@Attosius
Created August 24, 2025 18:18
Show Gist options
  • Save Attosius/90ea47f5f021835ee71f658b4ed7f550 to your computer and use it in GitHub Desktop.
Save Attosius/90ea47f5f021835ee71f658b4ed7f550 to your computer and use it in GitHub Desktop.
ДЗ: Переменные
string name = "Andrey";
char symbol = 'a';
bool canPay = true;
byte alpha = 255;
short typeOfCode = 1000;
int money = 0;
uint unusedType = 4_000_000_000;
long bigNumber = 5_000_000_000;
decimal muchMoney = 10_000_000_000;
float speed = 17.7f;
double elapsed = 22.2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment