Operating system for OpenComputers
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
186B

  1. function component.get(addr, ctype)
  2. for c in component.list(ctype, true) do
  3. if c:sub(1, addr:len()) == addr then
  4. return c
  5. end
  6. end
  7. return nil, "no such component"
  8. end