~oontvoo/cfg-to-pda/unparser

« back to all changes in this revision

Viewing changes to src/test/java/cfgpda/RunConverter.java

  • Committer: oontvoo at hotmail
  • Date: 2012-10-18 05:36:28 UTC
  • Revision ID: oontvoo@hotmail.com-20121018053628-28kspo5cpcl62uwp
add bzrignore. clean up

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package cfgpda;
2
 
 
3
1
/**
4
2
 * Context-Free-Grammar to Push-down Automaton Converter
5
3
 * Copyright (C) 2012  Vy Nguyen
20
18
 * Boston, MA  02110-1301, USA.
21
19
 */
22
20
 
 
21
package cfgpda;
 
22
 
 
23
 
23
24
public class RunConverter
24
25
{
25
26
    public static void main (String args[])
26
27
    {
27
 
        CFGGrammar gram = new CFGGrammar("2 + 2");
 
28
        
 
29
//        CFGGrammar gram = new CFGGrammar("2 + 2");
28
30
        
29
31
    }
30
32
}