Comments for interpreter example.

This commit is contained in:
Ilkka Seppala 2014-08-31 10:59:48 +03:00
parent 52ca001a7a
commit 4fef18f6c6

View File

@ -2,6 +2,12 @@ package com.iluwatar;
import java.util.Stack;
/**
*
* Interpreter pattern breaks sentences into expressions (Expression)
* that can be evaluated and as a whole form the result.
*
*/
public class App
{