17 lines
458 B
C#
17 lines
458 B
C#
using System;
|
||
using System.IO;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Exercises_C_Sharp.E01_Einleitung
|
||
{
|
||
class Exercise_1
|
||
{
|
||
public static void Start()
|
||
{
|
||
//Sorgen Sie dafür, dass in der Konsole nicht das englische ‚Hello World!‘, sondern die deutsche Übersetzung ‚Hallo Welt!‘ ausgegeben wird.
|
||
//Code START
|
||
Console.WriteLine("Hello World!");
|
||
//Code ENDE
|
||
}
|
||
}
|
||
} |