-
Notifications
You must be signed in to change notification settings - Fork 1
Printing Output
Akshath Raghav edited this page Jul 4, 2021
·
3 revisions
Cubot cube3x3 = new Cubot(true) ;
Cubot cube2x2 = new Cubot(false) ;
System.out.println(cube3x3) ;
System.out.println(cube2x2) ;
--> Prints out the cube with indexes and colors on each face of the cube pieces ( along with indexes )
Cubot cube3x3 = new Cubot(true) ;
Cubot cube2x2 = new Cubot(false) ;
System.out.println(cube3x3.indexedString()) ;
System.out.println(cube2x2.indexedString()) ;
Read on to see Cubot in action