2014-08-13 10:39:27 +01:00
|
|
|
using System;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
|
|
class MonoEmbed {
|
|
|
|
[MethodImplAttribute(MethodImplOptions.InternalCall)]
|
|
|
|
extern static string gimme();
|
|
|
|
|
2019-12-10 18:00:56 +00:00
|
|
|
static int Main ()
|
|
|
|
{
|
|
|
|
System.Console.WriteLine(gimme ());
|
|
|
|
if (gimme ().Equals("All your monos are belong to us!"))
|
|
|
|
return 0;
|
|
|
|
return 100;
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
}
|