Initial commit.

This commit is contained in:
blitz-research
2014-01-31 08:23:00 +13:00
commit 08a613ed0e
322 changed files with 45306 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef VAR_H
#define VAR_H
struct Type;
struct Var{
int index;
Type *type;
Var( int i,Type *t ):index(i),type(t){}
};
#endif