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

@ -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},