Skip to content
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
23 changes: 13 additions & 10 deletions FirstJavaCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ class FirstJavaCode
public static void main(String...args)
{

System.out.println("Hello to Java Programming World");
FirstJavaCode fjc = new FirstJavaCode();
fjc.otherMethod();
}

void otherMethod()
{
System.out.println("Hello its otherMethod from thinkbot");

System.out.println("Hello to Java Programming World");

}
FirstJavaCode abc = new FirstJavaCode();
abc.simpleMethod();

}

void simpleMethod()
{
System.out.println("From Rahuljain06 Second Java Code");

}



}