Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local somePeripheral = peripheral.wrap( 'top' ) --#once again, note that I assume the peripheral is on top of the computer
  2.  
  3. function getInfo( ... )
  4. local tValues = {...}
  5. for k, v in pairs( tValues ) do
  6. print( k .. type( v ) )
  7. end
  8. end
  9.  
  10. getInfo( somePeripheral.getMetadata() )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement