Write msg, with a trailing \n

Property definitions

socket $ TCPStream :: write_ln
	# Write `msg`, with a trailing `\n`
	fun write_ln(msg: Text)
	do
		if closed then return
		write msg.to_s
		write "\n"
	end
lib/socket/socket.nit:193,2--199,4