mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
463 B
C#
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());
|
|
}
|
|
}
|
|
}
|