Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
26
Task/S-expressions/Java/s-expressions-7.java
Normal file
26
Task/S-expressions/Java/s-expressions-7.java
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import jfkbits.ExprList;
|
||||
import jfkbits.LispParser;
|
||||
import jfkbits.LispParser.ParseException;
|
||||
import jfkbits.LispTokenizer;
|
||||
|
||||
public class LispParserDemo
|
||||
{
|
||||
public static void main(String args[])
|
||||
{
|
||||
|
||||
LispTokenizer tzr = new LispTokenizer(
|
||||
"((data \"quoted data\" 123 4.5)\n (data (!@# (4.5) \"(more\" \"data)\")))");
|
||||
LispParser parser = new LispParser(tzr);
|
||||
|
||||
try
|
||||
{
|
||||
Expr result = parser.parseExpr();
|
||||
System.out.println(result);
|
||||
}
|
||||
catch (ParseException e1)
|
||||
{
|
||||
// TODO Auto-generated catch block
|
||||
e1.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue