Search found 1 match

by Hrundy
Wed Mar 26, 2025 12:08 pm
Forum: Support
Topic: Description of bit type a bit unclear
Replies: 1
Views: 4194

Description of bit type a bit unclear

Hello, I refer to https://ugbasic.iwashere.eu/manual/datatypes, especially the text: x = y HAS BIT 4 : ' this is like y AND 32 x = y HAS NOT BIT 4 : ' this is like y AND 239 x = BIT 4 OF y : ' this is like y AND 32 it seems to me that the second line is somewhat wrong in the comment. I would think t...