1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

math.big: minor clean up

This commit is contained in:
Alexander Medvednikov
2020-12-22 08:27:50 +01:00
parent b3e0926601
commit 939e10cb28
3 changed files with 6 additions and 21 deletions

View File

@ -78,10 +78,6 @@ fn test_mod() {
}
fn test_from_str() {
x := big.from_string2('23')
println('kek')
println(x.str())
exit(0)
assert big.from_string('').hexstr() == '0'
assert big.from_string('1').hexstr() == '1'
assert big.from_string('0').hexstr() == '0'