home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 April
/
CHIP4_98.ISO
/
software
/
ccconrad
/
basic.exe
/
CHIP
/
Programme.Bas
/
Beispiele_3
/
BSP15.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
|
19 lines
DEFINE a BYTE
PRINT "Beispiel 15"
a = 2 * 2 + 4
PRINT "a = "; a
a = 2 * (2 + 4)
PRINT "a = "; a
a = 8 / 2 * 4
PRINT "a = "; a
a = 8 / (2 * 4)
PRINT "a = "; a
END