7 lines
86 B
Go
7 lines
86 B
Go
package vm
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var ErrStackOverflow = errors.New("stack overflow")
|