73ee7591e8
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
16 lines
311 B
C#
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;
|
|
}
|
|
}
|