summaryrefslogtreecommitdiffstats
path: root/taccle/examples/interactive_calculator.tac
blob: ac8a3ba2bec29eb9314bd29260480287747e9e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# $Id: interactive_calculator.tac,v 1.2 2004/09/08 21:38:44 tang Exp $

# This example expands the simple calculator to be interactive from
# the command line.  Note the use of an empty rule (i.e., epsilon
# transition).  Also featured are the error token and error recovery.

%{
#!/usr/bin/tclsh

%}

%token ID NEWLINE

%%

start: line NEWLINE start
 | line
 ;

line: E       { puts " = $1" }
 | error      { puts " -- error" }
 |   # empty
 ;
 
E: E '+' T    { set _ [expr {$1 + $3}] }
 | E '-' T    { set _ [expr {$1 - $3}] }
 | T
 ;

T: T '*' F    { set _ [expr {$1 * $3}] }
 | T '/' F    { set _ [expr {$1 / $3}] }
 | F
 ;
 
F: '(' E ')'  { set _ $2 }
 | ID         { set _ $::yylval }
 ;
 
%%

source simple_scanner.tcl
yyparse