Welcome to Computer Programming

Output

In Java, printing out is the line below:

System.out.println("What ever we want to say");

It is a bit long, so we will use a shortcut I made:

echo ("What ever we want to say");

 

Sometimes we want to bring multiple parts of a sentence together, we just use + between parts of our sentence:

echo("The first part of my sentence" + "The second part");
This works for variables too:
echo("The total is " + theTotal);