Skip to content

Instantly share code, notes, and snippets.

@r1d000
Last active February 7, 2025 07:03
Show Gist options
  • Save r1d000/4dfe8ce9432ac72013424f35393f36d6 to your computer and use it in GitHub Desktop.
Save r1d000/4dfe8ce9432ac72013424f35393f36d6 to your computer and use it in GitHub Desktop.
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
bool isUniversity = true;
short cash = 32767;
int cashDebt = -2147483648;
long starCount = 9223372036854775807;
string firstOutput = "Hello World";
char firstAlphabet = 'a';
float firstExercise = -0.5f;
double cost = 5.8;
int population = 5555;
bool isSession = false;
short universityDebt = 1;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment