tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 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