Implemented numbers with different bases

This commit is contained in:
Eduard Urbach 2024-07-29 00:30:26 +02:00
parent 0e999cae92
commit 6d77a8a120
Signed by: eduard
GPG key ID: 49226B848C78F6C8
11 changed files with 165 additions and 12 deletions

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
}