Advertisement
NikaBang

Untitled

May 11th, 2024 (edited)
559
0
17 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. internal class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         string firstName = "Tomas";
  6.         string lastName = "Anderson";
  7.  
  8.         int age = 25;
  9.         int height = 185;
  10.         double weight = 76.5;
  11.  
  12.         int year = 1960;
  13.         int month = 1;
  14.         int day = 23;
  15.  
  16.         ulong money = 10000000000000000000;
  17.         bool isSleeping = true;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement