Skip to content
This repository was archived by the owner on Oct 1, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions HelloWorld/hello_world.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// by Conny Heb -- https://github.com/ConnyHeb

import java.util.Scanner;

public class hello_world {

public static void main(String[] args) {

Scanner scan = new Scanner(System.in);
System.out.println("Enter your name: ");
String name = scan.next();
System.out.println("Hello " + name + "!");

}


}