14
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
string playerName = "Alice";
8
int playerAge = 12;
9
10
Console.WriteLine("Player Name: " + playerName);
11
Console.WriteLine("Player Age: " + playerAge);
12
}
13
}
14
Cached Result
Compilation error (line 12, col 2): } expected
Compilation error (line 12, col 2): } expected
Compilation error (line 12, col 2): } expected