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