LuaSlinger»Bool 2 String

Bool 2 String

Bool2String

function bool2str(bool)
  if (bool) then
    return "true"
  else
    return "false"
  end
end