Advertisement
Guest User

startup

a guest
Feb 7th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.87 KB | None | 0 0
  1. fuel = turtle.getFuelLevel()
  2. ID = os.getComputerLabel()
  3.  
  4.  
  5. function commas (num)
  6.   assert (type (num) == "number" or
  7.           type (num) == "string")
  8.  
  9.   local result = ""
  10.  
  11.   -- split number into 3 parts, eg. -1234.545e22
  12.   -- sign = + or -
  13.   -- before = 1234
  14.   -- after = .545e22
  15.  
  16.   local sign, before, after =
  17.     string.match (tostring (num), "^([%+%-]?)(%d*)(%.?.*)$")
  18.  
  19.   -- pull out batches of 3 digits from the end, put a comma before them
  20.  
  21.   while string.len (before) > 3 do
  22.     result = "," .. string.sub (before, -3, -1) .. result
  23.     before = string.sub (before, 1, -4)  -- remove last 3 digits
  24.   end -- while
  25.  
  26.   -- we want the original sign, any left-over digits, the comma part,
  27.   -- and the stuff after the decimal point, if any
  28.   return sign .. before .. result .. after
  29.  
  30. end -- function commas
  31.  
  32. print("ID:  "..ID)
  33. print("Fuel: "..commas(fuel))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement