agent/pkg/agentic/auto_pr_example_test.go

11 lines
179 B
Go
Raw Normal View History

// SPDX-License-Identifier: EUPL-1.2
package agentic
import core "dappco.re/go/core"
func Example_truncate() {
core.Println(truncate("hello world", 5))
// Output: hello...
}