07-26-2017, 02:21 PM
Just realised I made a mistake with the codes while I was re-watching the tutorial and trying out gedit.
The erroneous code:
The correct code:
Programming really puts attention to details to the test.
Thank you to everyone who responded and mulled over this issue (when it's due to my carelessness, sorry!!).
The erroneous code:
Code:
Name myName = new Name("Cookie" + "Monster" + "Jr");
The correct code:
Code:
Name myName = new Name("Cookie", "Monster", "Jr");
Programming really puts attention to details to the test.
Thank you to everyone who responded and mulled over this issue (when it's due to my carelessness, sorry!!).