79276685

Date: 2024-12-12 21:47:48
Score: 1.5
Natty:
Report link

Solved it with

import java.net.Socket


suspend fun sendStuff_() 
{
    val message = "text"
    val socket = Socket("10.0.2.2", 8091)

    socket.outputStream.write(message.toByteArray())
    
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Special Muesli