Skip to content

Commit

Permalink
Renamed file Class1.java to HelloThere.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jcronemb committed Mar 18, 2014
1 parent 9370bcc commit 16a10d3
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
package testapp;

public class Class1 {
public Class1() {
public class HelloThere {
public HelloThere() {
super();
}

public static void main(String[] args) {
Class1 class1 = new Class1();
HelloThere class1 = new HelloThere();
class1.hello();
}


/**
* Say hello
*/
public void hello() {
System.out.println("Hi2");
}
Expand Down

0 comments on commit 16a10d3

Please sign in to comment.