Print ini data

Property definitions

nitc :: term $ CmdIni :: print_ini
	# Print ini data
	fun print_ini(title: String, data: nullable String, no_color: nullable Bool) do
		if data == null then return
		if no_color == null or not no_color then
			print title.bold
		else
			print title
		end
		print ""
		print data
	end
src/doc/term/term.nit:354,2--364,4