19 lines
407 B
C#
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);
|
|
}
|
|
}
|
|
} |