a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
245 B
C#
15 lines
245 B
C#
// Compiler options: -r:gtest-exmethod-17-lib.dll
|
|
|
|
using System;
|
|
using Testy;
|
|
|
|
public static class MainClass
|
|
{
|
|
public static void Main ()
|
|
{
|
|
Object o = new Object ();
|
|
Console.WriteLine (o.MyFormat ("hello:{0}:{1}:", "there", "yak"));
|
|
}
|
|
}
|
|
|