19 lines
639 B
Java
19 lines
639 B
Java
package tech.nevets;
|
|
|
|
/**
|
|
* @author Steven Tracey
|
|
*/
|
|
|
|
public class STWelcome {
|
|
public static void main(String[] args) {
|
|
System.out.println("Welcome to Java Programming.");
|
|
System.out.print("I think this class ");
|
|
System.out.println("will be awesome!");
|
|
System.out.println("I promise not to cheat in this class");
|
|
System.out.println("If caught, I will be withdrawn with an F grade");
|
|
System.out.println("Como estas hoy"); // Lang: Spanish
|
|
System.out.println("J'espere que tu aimes ce cours"); // Lang: French
|
|
System.out.println("Byona gironata"); // Lang: Italian
|
|
}
|
|
}
|