diff --git a/examples/Hello/Hello.cs b/examples/Hello/Hello.cs index 4a9adefb..d3910aa0 100644 --- a/examples/Hello/Hello.cs +++ b/examples/Hello/Hello.cs @@ -5,7 +5,9 @@ public class HelloExample { public static void Main (String[] args) { var h = new Hello(); - h.PrintHello ("Hello world"); + h.PrintHello ("Hello world"); + Console.WriteLine("True =" + h.test1(3, 3.0f).ToString()); + Console.WriteLine("False =" + h.test1(2, 3.0f).ToString()); } }