VectorA:tostring
From ComputerCraft Wiki
Revision as of 11:14, 23 February 2013 by MafiaMoe (Talk | contribs) (Created page with "Returns a string representation of a vector Code example: local a = vector.new(1, 2, 3) local c = a:tostring() print(c) --1,2,3")
Returns a string representation of a vector
Code example:
local a = vector.new(1, 2, 3) local c = a:tostring() print(c) --1,2,3