// A program from Chapter 2 of Sams Teach Yourself Java in 24 Hours, // 8th Edition by Rogers Cadenhead, http://www.java24hours.com/ package com.java24hours; class CiaoMondo { public static void main(String[] arguments) { String greeting = "Ciao mondo!"; System.out.println(greeting); } }