Operating system for OpenComputers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
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