Skip to content

Instantly share code, notes, and snippets.

@GigaOrts
Last active January 18, 2023 14:38
Show Gist options
  • Save GigaOrts/7ed014be23b42d345d79d7f49ff63c7b to your computer and use it in GitHub Desktop.
Save GigaOrts/7ed014be23b42d345d79d7f49ff63c7b to your computer and use it in GitHub Desktop.
Домашка 1 Основы программирования
using System;
namespace domashka
{
class Program
{
static void Main(string[] args)
{
bool isDead;
byte playerHealth;
float vehicleVelocity;
decimal playerMoney;
short temperatureOfEngine;
ushort traveledDistance;
int numberOfEnemies;
uint playerDamage;
long budgetOfJapan;
ulong milesFromMoonToMars;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment