Monkey Island Fan - IT Specialist, Developer, Nurse, Sports fan, Gamer, Indie Developer and Board Game Enthusiast.

  • 0 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • Neither do we in Denmark. I think that’s generally how Europe works. The price on the menu is the price you will be expected to pay. Nothing more, nothing less.

    If I have a restaurant or bar experience out of the ordinary or just have pleasant time with the staff I will tip. Otherwise I won’t, at it will be perfectly fine for everyone.




  • Most programming languages uses = to copy a value into whatever whatever you put on the left side. You did it with TooClose, which you set to true.

    But when you compare values as you do with the if statement, you need another operator, otherwise CanReadThis will be set to true and the if statement will always run (or syntax error), making it unnecessary.

    Compare operators are typically == and/or === and some languages uses their own like ‘eq’ or other exciting ways.

    Languages and compilers works in different ways, but your program could look like this. (When comparing a Boolean you don’t need the operator, you can just write the variable since it’s either true or false)

    If (CanReadThis) { TooClose = true; }