问题 what the title says. I have a dice program, and it prints a dice IE ------ | | | | | 1| ------ I want to be able to print multiple dice, so it looks like this: ------ ------ | | | | | | | | | 1| | 3| ------ ------ I have tried fmt.Print , but that still prints them below each other. I was thinking about creating a function as well, that prints the top line of each object, but I couldn't figure out how to do this. Any ideas? 回答1: This takes care of the printing. The numbers are randomized