mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
15 lines
No EOL
241 B
C#
15 lines
No EOL
241 B
C#
using System;
|
|
|
|
class ConsoleDrv
|
|
{
|
|
public static int SupposedLength = 5;
|
|
public static string TheString = "Hello";
|
|
static int Main()
|
|
{
|
|
if (TheString.Length == SupposedLength) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
} |