Last active
February 7, 2025 07:03
-
-
Save r1d000/4dfe8ce9432ac72013424f35393f36d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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