mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
82 lines
1.4 KiB
Lua
82 lines
1.4 KiB
Lua
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
%import test_stack
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
byte ub1
|
|
byte ub2
|
|
byte bb1
|
|
byte bb2
|
|
uword uw1
|
|
uword uw2
|
|
word ww1
|
|
word ww2
|
|
|
|
uw1 = $1000
|
|
uw2 = $1100
|
|
if uw1<uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
if uw1<=uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
if uw1>uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
|
|
if uw1>=uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
if uw1==uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
if uw1!=uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
|
|
|
|
txt.chrout(' ')
|
|
uw1 = $1000
|
|
uw2 = $1000
|
|
|
|
if uw1<uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
if uw1<=uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
if uw1>uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
|
|
if uw1>=uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
if uw1==uw2
|
|
txt.chrout('.')
|
|
else
|
|
txt.chrout('!')
|
|
if uw1!=uw2
|
|
txt.chrout('!')
|
|
else
|
|
txt.chrout('.')
|
|
|
|
test_stack.test()
|
|
txt.chrout('\n')
|
|
}
|
|
}
|