using System;
using System.Collections.Generic;
public class Program
{
public static IEnumerable<string> Loves()
{
yield return "Fantasy π / π₯";
yield return "Exploring the World πΊοΈ";
yield return "PC Games πΉοΈοΈ";
yield return "Improving my coding Skillz π‘";
yield return ".net core π₯";
}
public static IEnumerable<string> Hates()
{
yield return "We have always done it this way π";
yield return "Top down approach π§π»βπΌ";
}
public static void Main()
{
Console.WriteLine("Name: Klyse");
Console.WriteLine("---");
Console.WriteLine("Work: Innoactive");
Console.WriteLine("Position: Backend Dev & DevOps π»");
Console.WriteLine("---");
Console.WriteLine("In love with:");
foreach (string klyseLoves in Loves()){
Console.WriteLine(klyseLoves);
}
Console.WriteLine("---");
Console.WriteLine("Hates:");
foreach (string klyseHates in Hates()){
Console.WriteLine(klyseHates);
}
}
}
Name: Klyse
---
Work: Innoactive
Position: Backend Dev & DevOps π»
---
In love with:
Fantasy π / π₯
Exploring the World πΊοΈ
PC Games πΉοΈοΈ
Improving my coding Skillz π‘
.net core π₯
---
Hates:
We have always done it this way π
Top down approach π§π»βπΌ