startit/Emne 3/Pokemon/Program.cs

13 lines
251 B
C#
Raw Normal View History

2024-11-22 12:21:29 +01:00
namespace Pokemon
{
class Program
{
static void Main(string[] args)
{
var pikachu = new Pikachu();
Console.WriteLine($"Pikachu har {Pikachu.Health}hp og er level {Pikachu.Level}");
}
}
}