I am making a board game with a simple TUI and I am trying to display the board on the screen. It's kind of like tic-tac-toe, except that what you place one the board are black or white disks. I wanted to have the black disks be an O (this would work since the run window background is black), but I can't find a way to display just a white circle or a filled in circle, rather.
I was hoping that there was some way I could do all that using something like System.out.println(), because I don't really have time to start making a GUI. I've been looking online for a while and can't find anything.
If anyone knows how to do this or a better way of doing things, it would be greatly appreciated.