c4947bd12a
compiler is blitzcc, what I previously called compiler is now compiler_lib
11 lines
116 B
C++
11 lines
116 B
C++
#pragma once
|
|
|
|
struct Type;
|
|
|
|
struct Var {
|
|
int index;
|
|
Type* type;
|
|
|
|
Var(int i, Type* t) : index(i), type(t) {}
|
|
};
|