Skip to content

Commit 6cd58d3

Browse files
committedOct 23, 2018
initial commit
0 parents  commit 6cd58d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2645
-0
lines changed
 

‎Input.java

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
int f(int n) {
2+
if (n == 0) {
3+
return 1;
4+
} else {
5+
return n * f(n-1);
6+
}
7+
}

‎JavaExtractor/JPredict/.classpath

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry excluding="Test.java" kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
15+
<attributes>
16+
<attribute name="maven.pomderived" value="true"/>
17+
</attributes>
18+
</classpathentry>
19+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
20+
<classpathentry kind="output" path="target/classes"/>
21+
</classpath>

0 commit comments

Comments
 (0)