我如何拥有一个函数返回的不仅仅是真还是假?

时间:2013-12-21 03:04:35

标签: lua

- 例如;我有这个>

function test()
  input = io.read()
  if input == "1" then
    return -- value one
  elseif input == "2" then
    return -- value two
  elseif input == "3" then
    return -- value three
  end
end

- 请注意,必须能够单独调用这些值:D

2 个答案:

答案 0 :(得分:0)

怎么样:

function test()
  input = io.read()
  if input == "1" then
    return 1 -- value one
  elseif input == "2" then
    return 2 -- value two
  elseif input == "3" then
    return 3 -- value three
  end
end

答案 1 :(得分:0)

大声笑了......

function test()
  return tonumber(io.read())
end