Cosmos/source/FrodeTest/Test/BoolTest.cs
2008-03-11 22:10:49 +00:00

18 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace FrodeTest.Test
{
public class BoolTest
{
public static void RunTest()
{
//TESTING TRUE/FALSE TOSTRING
bool yes = true;
bool no = false;
Console.WriteLine("true.ToString() gives: " + yes.ToString());
Console.WriteLine("false.ToString() gives: " + no.ToString());
}
}
}