mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 01:47:51 +08:00
9 lines
192 B
Go
9 lines
192 B
Go
// Package vars contains basic types for manipulating Elvish variables.
|
|
package vars
|
|
|
|
// Var represents an Elvish variable.
|
|
type Var interface {
|
|
Set(v interface{}) error
|
|
Get() interface{}
|
|
}
|