Last active
July 16, 2024 16:58
-
-
Save Strelok78/0a7fd96b7b413ea8b28992a9a841f94c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 iJunior; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int booksCountMax = 1; | |
int pensCountMin = 0; | |
double currentPositionX = 1.2; | |
double currentPositionY = 1.22; | |
float speedMaxValue = 1.22f; | |
float speedMinValue = 1.01f; | |
string firstSentence = "Hello, mate!"; | |
string lastSentence = "Goodbye, my firend!"; | |
bool isDoorOpen = true; | |
bool isLightOn = false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment