document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. -- ##############################
  2. -- msg_receiver test1
  3.  
  4. rednet.open("right")
  5.  
  6. while true do
  7.   local sender_id, message, distance = rednet.receive()
  8.   print("#",sender_id,": ",message)
  9. end
');