0
0

add more variations of numbers

This commit is contained in:
DrMaxNix 2022-09-06 20:49:05 +02:00
parent c5cce8fa92
commit 949df05292
2 changed files with 20 additions and 11 deletions

View File

@ -1,11 +0,0 @@
mov $dec 42
echo $dec "\n"
mov $hex 0x2A
echo $hex "\n"
mov $oct 0o52
echo $oct "\n"
mov $bin 0b101010
echo $bin "\n"

20
test/numbers.jce Normal file
View File

@ -0,0 +1,20 @@
mov $dec 42
echo $dec "\n"
mov $hex 0x2A
echo $hex "\n"
mov $oct 0o52
echo $oct "\n"
mov $bin 0b101010
echo $bin "\n"
mov $float 4.20
echo $float "\n"
mov $small 1.000000000000001
echo $small "\n"
mov $big 1000000000000001
echo $big "\n"