14 lines
307 B
C#
14 lines
307 B
C#
namespace Exercises_C_Sharp.E08_If
|
|
{
|
|
class Exercise_2
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Sorgen Sie dafür, dass niemals "Hey" ausgegeben wird.
|
|
//Code START
|
|
if(true)
|
|
//Code ENDE
|
|
Console.WriteLine("Hey");
|
|
}
|
|
}
|
|
} |