/* TutorialOne: This program is a sample program that will be
                downloaded and included in a CodeWarrior project. */

public class TutorialOne {
	public static void main(String[] args) {
		System.out.println ("Tutorial one program.");

		// Create a variable to hold a number
		int number = 12;
		System.out.println ("Number is: " + number);

		number = number + 1;
		System.out.println ("Number is: " + number);

		number = number + 10;
		System.out.println ("Number is: " + number);

		System.out.println ("End of program");
	}
}
