using System;
using System.Linq;
/*
Language-Integrated Query
Uniform query syntax in c# and VB.net to retrueve data from differebt sources and format
LINQ is a method to bridge the gap between a program and data
It provides a songle querying interface for different types of data sources
{LINQ QUERY} => [DATA SOURCES]
Using LINQ
1. Create a data source
2. Build a LINQ Query to select data from the data source
3.Execute the query and process the result
*/
public class Program
{
public static void Main()
Console.WriteLine("was it a cat i saw?");
}