Show dot in graphviz (blocking)

Property definitions

dot $ DotGraph :: show
	# Show dot in graphviz (blocking)
	fun show do
		var f = new ProcessWriter("dot", "-Txlib")
		f.write to_dot
		f.close
		f.wait
	end
lib/dot/dot.nit:164,2--170,4