Fix print call syntax

This commit is contained in:
Dave Burke
2022-02-11 12:37:15 -06:00
parent 5c998f3bb5
commit df86d49bb7

View File

@@ -127,7 +127,7 @@ public class Game {
} }
output.append("\n"); output.append("\n");
} }
userIo.print(output); userIo.print(output.toString());
} }
/** /**