Xamarin Public Jenkins (auto-signing) 73ee7591e8 Imported Upstream version 6.8.0.73
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
2019-12-10 18:00:56 +00:00

16 lines
311 B
C#

using System;
using System.Runtime.CompilerServices;
class MonoEmbed {
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern static string gimme();
static int Main ()
{
System.Console.WriteLine(gimme ());
if (gimme ().Equals("All your monos are belong to us!"))
return 0;
return 100;
}
}