Get your own Java server
using System;

namespace MyApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      bool isCSharpFun = true;
      bool isFishTasty = false;
      Console.WriteLine(isCSharpFun);   // Outputs True
      Console.WriteLine(isFishTasty);   // Outputs False    
    }
  }
}

              
True
False