- 1
using System;
- 2
using System.Text;
- 3
using Ivan-Marinov-Portfolio.About-Me;
- 4
- 5
namespace Ivan-Marinov-Portfolio
- 6
{
- 7
static string PrintInfo()
- 8
{
- 9
StringBuilder sb = new StringBuilder();
- 10
- 11
sb.AppendLine("I'm Ivan and I am passionate about computer science.");
- 12
sb.AppendLine("Currently studying C# development at SoftUni.");
- 13
sb.AppendLine("I live in Plovdiv, Bulgaria.");
- 14
sb.AppendLine("I like Sci-Fi movies and fantasy video games.");
- 15
sb.AppendLine("I enjoy cycling and going on long walks with my dogs.");
- 16
- 17
return sb.ToString().Trim();
- 18
}
- 19
PrintInfo();
- 20
}
Solution 'Ivan-Marinov-Portfolio'
- Ivan-Marinov-Portfolio