local function shorten(n)
  local num = (n/10^((math.floor(math.log10(n)))))
  local e = math.floor(math.log10(n))
  return num, e
end

local bnum = {}

function bnum.strtobnum(str)
 
 return {}
end

function bnum.errorcorrect(bnum)
 if bnum[2] < 0 then
   return
 end
end

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: