♻️ Switch from Console to Debug
continuous-integration/drone/push Build is passing Details

pull/2/head
Alexis Drai 2 years ago
parent f8f6e366dd
commit 1d11244d1b

@ -1,4 +1,5 @@
using System;
using Model;
using System.Diagnostics;
namespace App
{
@ -6,7 +7,11 @@ namespace App
{
static void Main(string[] args)
{
Console.WriteLine("Hello CI!");
Debug.WriteLine("Hello Debug!");
Player player = new Player("John");
Die die = new Die("I'm a die");
Debug.WriteLine(player.Name);
Debug.WriteLine(die.Name);
}
}
}

@ -1,6 +1,4 @@
using System;
namespace Model
namespace Model
{
public class Die
{

@ -1,6 +1,4 @@
using System;
namespace Model
namespace Model
{
public class Player
{

Loading…
Cancel
Save