package ast

type DeclKind int

const (
	ConstDecl = iota
	VarDecl
	TypeDecl
	FuncDecl
)

type Decl struct {
	Kind DeclKind
	Expr *Expr
	Type *Type
	Func *Func
}
