Implemented numbers with different bases

This commit is contained in:
2024-07-29 00:30:26 +02:00
parent f1d4e65c1b
commit d5953649d9
11 changed files with 165 additions and 12 deletions

10
tests/programs/binary.q Normal file
View File

@ -0,0 +1,10 @@
main() {
assert 0b0 == 0
assert 0b1 == 1
assert 0b10 == 2
assert 0b11 == 3
assert 0b100 == 4
assert 0b101 == 5
assert 0b110 == 6
assert 0b111 == 7
}

View File

@ -0,0 +1,8 @@
main() {
assert 0x0 == 0
assert 0x1 == 1
assert 0xA == 10
assert 0x10 == 16
assert 0xFF == 255
assert 0x1000 == 4096
}

8
tests/programs/octal.q Normal file
View File

@ -0,0 +1,8 @@
main() {
assert 0o0 == 0
assert 0o1 == 1
assert 0o7 == 7
assert 0o10 == 8
assert 0o100 == 64
assert 0o755 == 493
}

View File

@ -22,6 +22,9 @@ var programs = []struct {
{"reuse", "", "", 0},
{"reassign", "", "", 0},
{"return", "", "", 0},
{"binary", "", "", 0},
{"octal", "", "", 0},
{"hexadecimal", "", "", 0},
{"math", "", "", 0},
{"precedence", "", "", 0},
{"bitwise-and", "", "", 0},
@ -30,7 +33,7 @@ var programs = []struct {
{"shift", "", "", 0},
{"modulo", "", "", 0},
{"modulo-assign", "", "", 0},
{"division-split", "", "", 0},
{"div-split", "", "", 0},
{"negative", "", "", 0},
{"negation", "", "", 0},
{"square-sum", "", "", 0},