Example #1
0
func str(a []MalType) (MalType, error) {
	return printer.Pr_list(a, false, "", "", ""), nil
}
Example #2
0
func println(a []MalType) (MalType, error) {
	fmt.Println(printer.Pr_list(a, false, "", "", " "))
	return nil, nil
}
Example #3
0
func pr_str(a []MalType) (MalType, error) {
	return printer.Pr_list(a, true, "", "", " "), nil
}