Example #1
0
File: core.go Project: wcgh/plum
func str(a []PlumType) (PlumType, error) {
	return printer.Pr_list(a, false, "", "", ""), nil
}
Example #2
0
File: core.go Project: wcgh/plum
func println(a []PlumType) (PlumType, error) {
	fmt.Println(printer.Pr_list(a, false, "", "", " "))
	return nil, nil
}
Example #3
0
File: core.go Project: wcgh/plum
func pr_str(a []PlumType) (PlumType, error) {
	return printer.Pr_list(a, true, "", "", " "), nil
}