14 lines
160 B
Plaintext
14 lines
160 B
Plaintext
package main
|
|
|
|
import (
|
|
"github.com/containous/yaegi/interp"
|
|
)
|
|
|
|
func main() {
|
|
i := interp.New(interp.Opt{})
|
|
i.Eval(`println("Hello")`)
|
|
}
|
|
|
|
// Output:
|
|
// Hello
|