Return the char instance associated with val.

Property definitions

nitc $ NaiveInterpreter :: char_instance
	# Return the char instance associated with `val`.
	fun char_instance(val: Char): Instance
	do
		var t = mainmodule.char_type
		var instance = new PrimitiveInstance[Char](t, val)
		init_instance_primitive(instance)
		return instance
	end
src/interpreter/naive_interpreter.nit:279,2--286,4