1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "ir/ir.h"
using namespace std;
using namespace empathy;
using namespace empathy::util;
int main( int argc, char** argv )
{
// Just a dumping place for simple test code for now.
auto gg = TVEC( TSID( foo ), TSID( bar ), TVAR( T ) );
ir::ToString( cout, gg ) << endl;
return EXIT_SUCCESS;
}
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "ir/ir.h"
using namespace std;
using namespace empathy;
using namespace empathy::util;
int main( int argc, char** argv )
{
// Just a dumping place for simple test code for now.
auto gg = TVEC( TSID( foo ), TSTR( "bar" ), TVAR( T ) );
ir::ToString( cout, gg ) << endl;
return EXIT_SUCCESS;
}
|