Exercises_C_Sharp/E01_Einleitung/Exercise_1.cs

17 lines
458 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
}
}
}