Please enable JavaScript to use CodeHS

CodeHS Glossary


System.out.println Java

Java method that lets us print out a line of output to the user For example: ``` System.out.println("Hello World!"); System.out.println("This is Java!"); ``` Would output the following to the user: ``` Hello World! This is Java! ```