using System;
//Declaring and Initializing variables
int i = 2 + 2;
bool myBoolean = true;
float mcFloat = .8f;
string ugh = "I can't believe I lost all my fucking notes.";
var sum = i + 3; //can declare and intitiallize in same line
/*Operators, a small list
. gives access to the member
+ is a concatenation operator
++ will add one to an int (increment operator)
= is an assignment operator
== is a mathematical equality
!= not equal to
-- will subtract one from the designated int (decrement operator)
* multiply
/ divide
% modulus
< less than
<= less than or equal to
> greater than
> greater than or equal to
|| conditional or
&& conditional and
Statements are made up of expressions. Expressions are made of of operands and operations.
*/
//Basic functions are called Methods in C#
/*[Modifiers (E.G public or static)] [Type of output] [Name] ( [parameter 1],[parameter 2] ...)
{
}