You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
787 B
32 lines
787 B
using System;
|
|
using Model;
|
|
|
|
|
|
namespace Program;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
Console.WriteLine("Helle World!");
|
|
|
|
Recipe recipe = new Recipe(
|
|
1,
|
|
"Cookies aux pépites de chocolat",
|
|
new List<string>(new string[]{
|
|
"2 pommes",
|
|
"3L de vin",
|
|
"500g de farine"
|
|
}),
|
|
"Etape 1:\n"
|
|
+ "\tCouper les pommes\n"
|
|
+ "Etape 2:\n"
|
|
+ "\tLes disposer sur le plat et mettre le vin dessus\n"
|
|
+ "Etape 3:\n"
|
|
+ "\tMettez toute la farine ensuite, puis 4h32 au four.\n"
|
|
+ "\nDégustez c'est prêt !"
|
|
);
|
|
|
|
recipe.Display();
|
|
}
|
|
} |