mirror of
https://github.com/danog/parser.git
synced 2025-01-23 05:21:22 +01:00
14 lines
183 B
Go
14 lines
183 B
Go
package constructs
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ryangjchandler/trunk/value"
|
|
)
|
|
|
|
func Echo(values ...value.Value) {
|
|
for _, value := range values {
|
|
fmt.Print(value.ToString())
|
|
}
|
|
}
|