Skip to content

Instantly share code, notes, and snippets.

@madevelopers
Last active August 29, 2015 14:23
Show Gist options
  • Save madevelopers/9583aa5db4b73d833e30 to your computer and use it in GitHub Desktop.
Save madevelopers/9583aa5db4b73d833e30 to your computer and use it in GitHub Desktop.
How to print to the console in Java #java #flashcard
class Hello {
    public static void main(String[] args) {
        System.out.print("Hello ");
        System.out.println(" World!");  // Adds a newline character at the end
        // > Hello World!
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment