Get the default name of the executable to produce

Property definitions

nitc $ MakefileToolchain :: default_outname
	# Get the default name of the executable to produce
	fun default_outname: String
	do
		var mainmodule = compiler.mainmodule.first_real_mmodule
		return mainmodule.name
	end
src/compiler/abstract_compiler.nit:337,2--342,4

nitc $ AndroidToolchain :: default_outname
	redef fun default_outname do return "{super}.apk"
src/platform/android.nit:60,2--50

nitc $ EnscriptenToolchain :: default_outname
	redef fun default_outname do return "{super}.js"
src/platform/emscripten.nit:46,2--49

nitc $ IOSToolchain :: default_outname
	redef fun default_outname do return "{super}.app"
src/platform/ios.nit:54,2--50