Skip to content

Commit 430a578

Browse files
committed
[edit] output to console
1 parent 7cd8f3e commit 430a578

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
using System.Diagnostics;
1+
using System;
2+
using System.Diagnostics;
23

34
namespace MyProject.Scheduler;
45

56
internal class Worker
67
{
7-
public void Run() => Trace.WriteLine("Hello world!");
8+
public void Run() => Console.WriteLine("Hello world!");
89
}

0 commit comments

Comments
 (0)