10 lines
119 B
C#
Raw Normal View History

using System;
using System.IO;
class X {
static int Main ()
{
return Directory.Exists ("") == false ? 0 : 1;
}
}