A developer from France who loves creating, experimenting, and solving problems.
Always curious and looking for ways to improve.
using System;
using System.Collections.Generic;
namespace AboutMe
{
public class Sofiane
{
public string Name { get; } = "Sofiane";
public string Location { get; } = "France";
public int CodingSince { get; } = 2024;
public List<string> Languages { get; } = new List<string>
{
"C#",
"C/C++",
};
public string CurrentGoal { get; } = "Working toward becoming a better developer";
public string FunFact { get; } = "Creating bugs since 2024 (and fixing them too π)";
public void SayHi()
{
Console.WriteLine("Thanks for visiting my GitHub profile!");
}
}
}npx sofiane

