Skip to content

Commit feeff83

Browse files
MPHANIRAJKIRANMPHANIRAJKIRAN
authored andcommitted
Hello world commit adding new Line
1 parent 54c580d commit feeff83

4 files changed

Lines changed: 46 additions & 1 deletion

File tree

.classpath

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="src" path="Chapter1"/>
5+
<classpathentry kind="src" path="Chapter10"/>
6+
<classpathentry kind="src" path="Chapter11"/>
7+
<classpathentry kind="src" path="Chapter12"/>
8+
<classpathentry kind="src" path="Chapter13"/>
9+
<classpathentry kind="src" path="Chapter14"/>
10+
<classpathentry kind="src" path="Chapter15"/>
11+
<classpathentry excluding="x/|y/" kind="src" path="Chapter16"/>
12+
<classpathentry kind="src" path="Chapter16/x"/>
13+
<classpathentry kind="src" path="Chapter16/y"/>
14+
<classpathentry kind="src" path="Chapter2-5"/>
15+
<classpathentry kind="src" path="Chapter6/Enumeration"/>
16+
<classpathentry kind="src" path="Chapter6/Generic"/>
17+
<classpathentry kind="src" path="Chapter7/Exercise"/>
18+
<classpathentry kind="src" path="Chapter7/Math"/>
19+
<classpathentry kind="src" path="Chapter7/Number"/>
20+
<classpathentry kind="src" path="Chapter7/String"/>
21+
<classpathentry kind="src" path="Chapter7/System"/>
22+
<classpathentry kind="src" path="Chapter7/Thread"/>
23+
<classpathentry kind="src" path="Chapter8"/>
24+
<classpathentry kind="src" path="Chapter9"/>
25+
<classpathentry kind="output" path="bin"/>
26+
</classpath>

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.class
2-
#经测试,该文件在commit之后方才见到效果。
2+
#经测试,该文件在commit之后方才见到效果。
3+
/bin/

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>LearnJavaForAndroid</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

Chapter1/HelloWorld.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
public class HelloWorld{
22
public static void main(String[] args){
33
System.out.println("Hello,World!");
4+
System.out.print("Hellow world new text\n");
45
}
56
}

0 commit comments

Comments
 (0)