blob: 1a4ab38cce4a91e1b11b972b2347e4f5d7ed9ccd (
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
|
#include "config.h"
#include "number.h"
#include "packedintarray.h"
#include "lexer.h"
#include "token.h"
#include "parser.h"
#include "options.h"
#include <math.h>
#include <sys/time.h>
#include <bu/file.h>
#include <bu/sio.h>
#include <bu/streamstack.h>
using namespace Bu;
int main( int argc, char *argv[] )
{
try
{
Options opt( argc, argv );
println(CLIC_VERSION_STR);
println("Try \\exit, \\help, \\scale, and \\radix commands.");
println("");
Lexer lex( sioRaw );
lex.setScale( opt.getScale() );
lex.setRadix( opt.getRadix() );
Parser parser( lex, sioRaw );
parser.parse();
}
catch( std::exception &e )
{
Bu::println("Error: %1").arg( e.what() );
}
return 0;
}
|