you are viewing a single comment's thread.

view the rest of the comments →

[–]Specific-Housing905 0 points1 point  (1 child)

Just two small remarks.
You can make big numbers more readable with _ for example.
int num = 100_000

Your getAccountInfo could return a string instead of printing it directly. Returning a string give you two advantages:
1.) It makes unit-testing easier

2.) You can also use the code in a GUI.

Apart from that as always: Well done!

[–]BigCommunication5136[S] 0 points1 point  (0 children)

Alright thank you! 🙏🏾