Hi. Id like to make simple digital clock just from symbols. My idea was to make this template:
{
System.out.println(" _");
System.out.println("|" + "_"+ "|");
System.out.println("|" + "_" + "|");
}
_
|_|
|_|
BUILD SUCCESSFUL (total time: 0 seconds)
_ _
_| | _|
|_ | _| ....etc
and then parse the symbols which corresponds with the number from input. I searched for some help with google but still lost as Im newbie in java. Any help appreciated.

System.out.println("|_|");since strings can contain more than one character and incessant concatenation like that merely complicates the reading of the code. – Jonathan Leffler Nov 6 at 5:47