mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
No EOL
170 B
C#
14 lines
No EOL
170 B
C#
using System;
|
|
|
|
class ConsoleDrv
|
|
{
|
|
public static int Main()
|
|
{
|
|
Object obj = new Object();
|
|
if(obj == null) {
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
} |