beyondgrader.com Logo
DemoBrowseAboutTeamLogin

Hello, world!

Geoffrey Challen // 2020.6.0

As we learn to communicate with these incredibly powerful machines, we frequently need them to tell us something about what they are doing as they run our program. We do this by using so-called print statements.

In Java, the programming language we'll be learning together, we use the function System.out.println to print a message to the console. The code below is already displaying a message. But to complete this problem you need to modify the code so that it prints "Hello, world!" (Note that you don't need to print the quotation marks, just what's between them.)