summaryrefslogtreecommitdiffstats
path: root/taccle/examples/simple_scanner.fcl
blob: 99ff67fbb1e282371b956a6b516cc419233ec819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# $Id: simple_scanner.fcl,v 1.2 2004/08/18 23:55:31 tang Exp $

%{
source "simple_calculator.tab.tcl"
%}

%option interactive

number  [0-9]+

%%

{number}  { set ::yylval $yytext; return $::ID }
\n        { return $::NEWLINE }
\s        # ignore whitespace
.         { set ::yylval $yytext; return $yytext }