%filenames scanner

//%interactive
//%debug

// When using bisonc++: its symbolic tokens are defined in ../tokens/tokens.h
// uncomment the following line to make the tokens available to the scanner.

// %token-path = "../tokens/tokens.h"

// the scanner's members and 'lexer' should return symbolic tokens as
// 'Tokens::TOKEN_NAME' 

%%

[ \t]+                          // Often used: skip white space
\n                              // same
