
nguoisechia .com
Pro Student 6,025 Pointsstatic void Main(string[] args) { System.Console.Write("hello"
Sy
class CodeChallenge
{
static void Main(string[] args)
{
System.Console.Write("hello");
}
}
1 Answer

Steven Parker
205,159 Points You're over-thinking it. This challenge only expects you to add the proper argument to the call, not construct a program around it.
So all you need is:
System.Console.Write("Hello");