LOTUSSCRIPT 言語
構文expr1 And expr2 構成要素expr1、expr2
Dim bothAreHere As Boolean
johnIsHere = TRUE
jimIsHere = FALSE
bothAreHere = johnIsHere And jimIsHere
Print bothAreHere ' Prints 0 (False)
' Bit-wise usage Dim x As Integer, y As Integer x% = &b11110000 y% = &b11001100 Print Bin$(x% And y%) ' Prints 11000000
関連項目