prog8/examples/test.p8

74 lines
1.3 KiB
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
%import test_stack
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
2020-11-09 22:57:50 +00:00
float uw1
2020-11-22 15:38:01 +00:00
const float uw2 = 2.2
uw1 = 1.1
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(' ')
2020-11-22 15:38:01 +00:00
uw1 = 2.2
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')
2020-09-16 21:04:18 +00:00
}
2020-08-27 17:47:50 +00:00
}