Files
G4G0-1/Semester 1/Programming 1/Java/examples/hello/Hello.java
2024-01-15 20:14:10 +00:00

25 lines
411 B
Java

/**
* Class Hello:
*
* Hello-world program to demonstrate BlueJ.
*/
class Hello
{
/**
* Method that does the work
*/
public void go()
{
System.out.println("Hello, world");
}
/**
* main method for testing outside BlueJ
*/
public static void main(String[] args)
{
Hello hi = new Hello();
hi.go();
}
}