/** * Programme affichant Bonjour * **/ public class Bonjour { /* la méthode principale */ public static void main ( String [] args ) { // affichage du message entre guillemets System.out.println ( "Bonjour tout le monde!") ; } }