Dumb question but what does it do, I saw it in my friend's program, and when I try doing try catch without the exclamation point, it skips all the scanners and finishes the program.
#What does the exclamation point do?
10 messages · Page 1 of 1 (latest)
⌛ This post has been reserved for your question.
Hey @agile rampart! Please use
/closeor theClose Postbutton above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
this is the not operator
That is logical not operator,
So your while loop is testing while not error
!true is false and !false is true
^ it inverts a boolean
in this case, it's basically saying "while the inverse of Error is true, do ...", so "while Error is false, do ..."
Oooo okayy thankss everyone!!!
If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.