4 minutes ago, Halpmelurngewd said:So basically if I were to use this in code it would look like this
Yes. To explain.
Int A = 6; //Here you made a intiger it is called A and it has a value of 6
Int B=7; // Here you made a intiger it is called B and it has a value of 7
Cout (sum A+B)// Here you are telling the computer to write A+B = 13
//Instead of Cout lets use the Unity print() function instead
print(A+B) //This returns 13
Edit, corrected variable names.