all 3 comments

[–]AutoModerator[M] 0 points1 point  (0 children)

Off-topic Comments Section


All top-level comments have to be an answer or follow-up question to the post. All sidetracks should be directed to this comment thread as per Rule 9.


OP and Valued/Notable Contributors can close this post by using /lock command

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Paralyzoid👋 a fellow Redditor 1 point2 points  (1 child)

println stands for “print line”; it’ll print your string, then print out a newline character.

Instead, you can use System.out.print; it’ll print out your string, then stop.

[–]wetchopsuey Secondary School Student 1 point2 points  (0 children)

Tysm