AalborgHTX

Mit første console program

Nov 17th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Min_Første_Console_App
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Hello World!");
  10.             Console.WriteLine("Skriv dit navn her:");
  11.             string navn = Console.ReadLine();
  12.             Console.WriteLine("Du hedder" + navn);
  13.         }
  14.     }
  15. }
Add Comment
Please, Sign In to add comment