home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 April
/
CHIP4_98.ISO
/
software
/
ccconrad
/
basic.exe
/
CHIP
/
Programme.Bas
/
Beispiele_3
/
BSP12.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1997-08-29
|
189 b
|
23 lines
DEFINE a BIT[1]
DEFINE b BIT[2]
PRINT "Beispiel 12"
a = 1
b = 0
PRINT a
PRINT b
PRINT a AND b
PRINT a NAND b
PRINT a OR b
PRINT a NOR b
PRINT a XOR b
END