Uebungsaufgaben_ITFA_2_SS_2025/Exercises/E03_Strings/Exercise_1.cs
s.schueler.doz 19d199a2ad Initial
2025-02-10 17:06:29 +01:00

19 lines
407 B
C#

using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.E03_Strings
{
class Exercise_1
{
public static void Start()
{
//Sorgen Sie dafür, dass "Hallo, wie geht's?" unten auf der Konsole ausgegeben wird.
//Code START
dynamic s = -1;
//Code ENDE
Console.WriteLine(s);
}
}
}