プレイ日記
What does ¦¦ mean?
2そうだね
プレイ済み
返信[1]
親投稿
*J.P.* DEV NEWPICY3
im guessing and, or something but idk.
0そうだね
プレイ済み
返信[2]
親投稿
It's the same as "OR". Kind of like "?" is the same as "PRINT".
1そうだね
プレイ済み
返信[3]
親投稿
komodo † 406mario
or
1そうだね
プレイ済み
返信[4]
親投稿
Hanzo rzsense
Exactly speaking, it's not same as OR. It's logical operator, and OR is a kind of bit operators. Try typing as follows. ?1 OR 2 ?1 || 2
2そうだね
未プレイ
返信[5]
親投稿
V360 TheV360
It's OR, but it only outputs TRUE or FALSE. 'OR ?5 OR 6 'outputs 7 '|| ?5 || 6 'outputs 1, or TRUE
2そうだね
プレイ済み
返信[6]
親投稿
V360 TheV360
Thought up another difference, this time with AND and &&: 'AND IF BUTTON()AND #A THEN:?"Hello!" 'Press A and this message shows! Also works if you press another button while pressing A! '&& IF BUTTON()&& #A THEN:?"Hello!" 'Press any button and this message shows. #A is just boiled down to "well this one is true, hope the other one is also"
2そうだね
プレイ済み