Skip to content

Commit b775027

Browse files
Add stubs to forth exercise (exercism#2346)
1 parent a20f059 commit b775027

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
/*
1+
import java.util.List;
22

3-
Since this exercise has a difficulty of > 4 it doesn't come
4-
with any starter implementation.
5-
This is so that you get to practice creating classes and methods
6-
which is an important part of programming in Java.
7-
8-
Please remove this comment when submitting your solution.
9-
10-
*/
3+
class ForthEvaluator {
4+
List<Integer> evaluateProgram(List<String> input) {
5+
throw new UnsupportedOperationException("Please implement the evaluateProgram method");
6+
}
7+
}

0 commit comments

Comments
 (0)