a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
231 B
C#
17 lines
231 B
C#
using System;
|
|
|
|
public class X
|
|
{
|
|
[CLSCompliant (false)]
|
|
public static string Text ()
|
|
{
|
|
return "PASS";
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
Console.WriteLine (Text ());
|
|
return 0;
|
|
}
|
|
}
|