12 lines
218 B
C#
12 lines
218 B
C#
|
using System;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
class MonoEmbed {
|
||
|
[MethodImplAttribute(MethodImplOptions.InternalCall)]
|
||
|
extern static string gimme();
|
||
|
|
||
|
static void Main() {
|
||
|
Console.WriteLine (gimme ());
|
||
|
}
|
||
|
}
|