fb:porticula NoPaste
Boolean-Test
Uploader: | ytwinky |
Datum/Zeit: | 15.09.2007 14:35:24 |
#Include Once "windows.bi"
Dim B As Boolean
?"True:" &True
?"Not True:" &(Not True)
?"False:" &False
?"Not False:" &(Not False)
?"1=1(should be TRUE):" &(1=1)
?"!1=1(should be FALSE):" &(Not 1=1)
?"1=0(should be FALSE):" &(1=0)
?"!1=0(should be TRUE):" &(Not 1=0)
?"(1=1)=True:" &((1=1)=TRUE)
Sleep
End