Add a value associated to key

Property definitions

curl $ HeaderMap :: []=
	# Add a `value` associated to `key`
	fun []=(key, value: String)
	do
		array.add new Couple[String, String](key, value)
	end
lib/curl/curl.nit:608,2--612,4