12 lines
179 B
Go
12 lines
179 B
Go
package build
|
|
|
|
import (
|
|
"git.akyoto.dev/cli/q/src/build/cpu"
|
|
)
|
|
|
|
// Variable represents a variable in a function.
|
|
type Variable struct {
|
|
Name string
|
|
Register cpu.Register
|
|
}
|