package ast

type Func struct {
	Inputs  []Field
	Outputs []Field
	Body    []Stmt
}
