8 lines
90 B
Go
8 lines
90 B
Go
package scope
|
|
|
|
// Variable is a named value.
|
|
type Variable struct {
|
|
Value
|
|
Name string
|
|
}
|