Skip to content

Instantly share code, notes, and snippets.

@Moonlol13
Last active February 7, 2025 06:36
Show Gist options
  • Save Moonlol13/deb345b5dc6f35f5626d29b4f0d7f0f2 to your computer and use it in GitHub Desktop.
Save Moonlol13/deb345b5dc6f35f5626d29b4f0d7f0f2 to your computer and use it in GitHub Desktop.
0.1
namespace ConsoleApp6
{
internal class Program
{
static void Main(string[] args)
{
string name = "Ilnur";
int age = 18;
int count = 4;
char firstLetter = 'a';
char secondLetter = 'b';
bool isOpen = true;
short numbersOfPeople = 3;
double pi = 3.14;
double percent = 14.15;
long sum = 43;
bool isAlive = false;
int rubles = 19;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment